Commit af1588b

mo k <mo@mokhan.ca>
2012-08-13 21:06:55
fix another typo in the cucumber navigation feature.
1 parent fdc9a5a
Changed files (2)
features/step_definitions/navigation_steps.rb
@@ -17,7 +17,6 @@ When /^I tell the rover to travel$/ do
   @command = NavigateRover.new(@plateau, @rover, @instructions)
 end
 
-Then /^the rovers final positions should be '(.*)' on the screen\.$/ do |expected|
+Then /^the rovers final position should be '(.*)' on the screen\.$/ do |expected|
   @command.run.should == expected
 end
-
features/navigation.feature
@@ -8,4 +8,4 @@ Feature: Navigation
     And the starting position is '1 2 N'
     And I move "LMLMLMLMM"
     When I tell the rover to travel
-    Then the rovers final positions should be '1 3 N' on the screen.
+    Then the rovers final position should be '1 3 N' on the screen.