Fix cucumber steps description (s/should/must/)

This commit is contained in:
Thibault Jouan 2015-04-15 03:27:05 +00:00
parent 773db4c8eb
commit 747573c52e
2 changed files with 2 additions and 2 deletions

View File

@ -3,4 +3,4 @@ Feature: program termination
Scenario: terminates when requested to quit
Given uhwm is running
When I tell uhwm to quit
Then uhwm should terminate successfully
Then uhwm must terminate successfully

View File

@ -27,6 +27,6 @@ Then /^the exit status must be (\d+)$/ do |exit_status|
assert_exit_status exit_status.to_i
end
Then /^uhwm should terminate successfully$/ do
Then /^uhwm must terminate successfully$/ do
assert_exit_status 0
end