Commit a319e24d44de58ba4ddc1076c5c14deee900c323

Authored by Rafael Manzo
1 parent 80dd4e85

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 149 Then(/^"(.*?)" should be less than "(.*?)"$/) do |arg1, arg2|
150 150 v1 = eval "@#{arg1}"
151 151 v2 = eval "@#{arg2}"
152   - (v1 < v2).should be_true
  152 + expect(v1 < v2).to be_truthy
153 153 end
... ...