You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by mf...@apache.org on 2011/04/11 10:21:54 UTC

svn commit: r1090971 - /incubator/deltacloud/trunk/tests/ec2/step_definitions/storage_volumes_steps.rb

Author: mfojtik
Date: Mon Apr 11 08:21:53 2011
New Revision: 1090971

URL: http://svn.apache.org/viewvc?rev=1090971&view=rev
Log:
Fixed return code for storage_volumes in Cucumber

Modified:
    incubator/deltacloud/trunk/tests/ec2/step_definitions/storage_volumes_steps.rb

Modified: incubator/deltacloud/trunk/tests/ec2/step_definitions/storage_volumes_steps.rb
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/tests/ec2/step_definitions/storage_volumes_steps.rb?rev=1090971&r1=1090970&r2=1090971&view=diff
==============================================================================
--- incubator/deltacloud/trunk/tests/ec2/step_definitions/storage_volumes_steps.rb (original)
+++ incubator/deltacloud/trunk/tests/ec2/step_definitions/storage_volumes_steps.rb Mon Apr 11 08:21:53 2011
@@ -36,7 +36,7 @@ Then /^client should GET on ([\w_\/]+)$/
 end
 
 Then /^a new storage_volume should be created$/ do
-  last_response.status.should == 200
+  last_response.status.should == 201
 end
 
 Then /^a list of ([\w_]+) should be returned$/ do |collection|