Commit a319e24d44de58ba4ddc1076c5c14deee900c323
1 parent
80dd4e85
Exists in
colab
and in
4 other branches
Fixing acceptance tests
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
features/step_definitions/repository_steps.rb
| @@ -149,5 +149,5 @@ end | @@ -149,5 +149,5 @@ end | ||
| 149 | Then(/^"(.*?)" should be less than "(.*?)"$/) do |arg1, arg2| | 149 | Then(/^"(.*?)" should be less than "(.*?)"$/) do |arg1, arg2| |
| 150 | v1 = eval "@#{arg1}" | 150 | v1 = eval "@#{arg1}" |
| 151 | v2 = eval "@#{arg2}" | 151 | v2 = eval "@#{arg2}" |
| 152 | - (v1 < v2).should be_true | 152 | + expect(v1 < v2).to be_truthy |
| 153 | end | 153 | end |