1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test_system.rb: commit miss

* test/ruby/test_system.rb (TestSystem#test_system_redirect_win): fix
  intentional failure left carelessly.  [Bug #7482]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-01-27 13:13:12 +00:00
parent d10cea5010
commit b2ca2c58f1

View file

@ -141,7 +141,7 @@ class TestSystem < Test::Unit::TestCase
cmd = "\"%WINDIR%/system32/find.exe\" \"BFI3CHL671\" input.txt > out.txt 2>err.txt"
assert_equal(true, system(cmd), message)
cmd = "\"%WINDIR%/system32/find.exe BFI3CHL671\" input.txt > out.txt 2>err.txt"
assert_equal(true, system(cmd), message)
assert_equal(false, system(cmd), message)
end
end
end