[前][次][番号順一覧][スレッド一覧]

ruby-changes:26906

From: nobu <ko1@a...>
Date: Sun, 27 Jan 2013 22:13:21 +0900 (JST)
Subject: [ruby-changes:26906] nobu:r38958 (trunk): test_system.rb: commit miss

nobu	2013-01-27 22:13:12 +0900 (Sun, 27 Jan 2013)

  New Revision: 38958

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=38958

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

  Modified files:
    trunk/test/ruby/test_system.rb

Index: test/ruby/test_system.rb
===================================================================
--- test/ruby/test_system.rb	(revision 38957)
+++ test/ruby/test_system.rb	(revision 38958)
@@ -141,7 +141,7 @@ class TestSystem < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_system.rb#L141
         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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]