1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

fix copy/paste error

This commit is contained in:
geemus (Wesley Beary) 2010-02-16 19:07:45 -08:00
parent 2a1a0b3211
commit 7dc947ce06

View file

@ -83,11 +83,11 @@ describe 'Fog::AWS::EC2::Snapshots' do
end
end
it "should not exist in addresses before save" do
it "should not exist in snapshots before save" do
AWS[:ec2].snapshots.get(@snapshot.id).should be_nil
end
it "should exist in buckets after save" do
it "should exist in snapshots after save" do
@snapshot.save
AWS[:ec2].snapshots.get(@snapshot.id).should_not be_nil
@snapshot.destroy