summaryrefslogtreecommitdiff
path: root/test/ruby/test_system.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-27 13:13:12 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-27 13:13:12 +0000
commitb2ca2c58f15948629f16ccd763e70fcd5f85a124 (patch)
treed3310abf5c31ba90cf04eccd0a97f6c044611072 /test/ruby/test_system.rb
parentd10cea5010ee88cd4039908a3d02b10b79f01ea1 (diff)
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
Diffstat (limited to 'test/ruby/test_system.rb')
-rw-r--r--test/ruby/test_system.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_system.rb b/test/ruby/test_system.rb
index b877538de8..db19a3c2cd 100644
--- a/test/ruby/test_system.rb
+++ b/test/ruby/test_system.rb
@@ -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