Skip to content

Commit

Permalink
Fix use of deprecated method
Browse files Browse the repository at this point in the history
  • Loading branch information
larsch committed Jan 13, 2015
1 parent 5309f6c commit 8779841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_ocra.rb
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ def test_debug_extract
def test_output_option
with_fixture 'helloworld' do
assert system("ruby", ocra, "helloworld.rb", *(DefaultArgs + ["--output", "goodbyeworld.exe"]))
assert !File.exists?("helloworld.exe")
assert File.exists?("goodbyeworld.exe")
assert !File.exist?("helloworld.exe")
assert File.exist?("goodbyeworld.exe")
end
end

Expand Down

0 comments on commit 8779841

Please sign in to comment.