From 7dc947ce062dadf3b91ce7a0b2bea9c7735dd5a8 Mon Sep 17 00:00:00 2001 From: "geemus (Wesley Beary)" Date: Tue, 16 Feb 2010 19:07:45 -0800 Subject: [PATCH] fix copy/paste error --- spec/aws/models/ec2/snapshot_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/aws/models/ec2/snapshot_spec.rb b/spec/aws/models/ec2/snapshot_spec.rb index b05ac3834..6ab862121 100644 --- a/spec/aws/models/ec2/snapshot_spec.rb +++ b/spec/aws/models/ec2/snapshot_spec.rb @@ -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