diff --git a/features/session/termination.feature b/features/session/termination.feature index 6cdd522..135b056 100644 --- a/features/session/termination.feature +++ b/features/session/termination.feature @@ -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 diff --git a/features/steps/run_steps.rb b/features/steps/run_steps.rb index e8f9026..d72b716 100644 --- a/features/steps/run_steps.rb +++ b/features/steps/run_steps.rb @@ -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