Skip to content

Commit

Permalink
[cleanup] Nowadays, DocString compares to Strings
Browse files Browse the repository at this point in the history
  - In 2014, this was a trouble,
    cucumber/common#669
  • Loading branch information
olleolleolle committed May 24, 2015
1 parent 09b0ae4 commit 44bace2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/lib/step_definitions/junit_steps.rb
@@ -1,7 +1,7 @@
Then(/^the junit output file "(.*?)" should contain:$/) do |actual_file, text|
actual = IO.read(current_dir + '/' + actual_file)
actual = replace_junit_time(actual)
expect(actual).to eq text.to_s
expect(actual).to eq text
end

module JUnitHelper
Expand Down

0 comments on commit 44bace2

Please sign in to comment.