From c265d57595a1d799c433de2422aeaa22f7ab5706 Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 27 Oct 2010 05:56:01 +0000 Subject: * ruby/test_io_m17n.rb (TestIO_M17N#pipe): fixed the mistake of previous commit. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29608 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_io_m17n.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/ruby') diff --git a/test/ruby/test_io_m17n.rb b/test/ruby/test_io_m17n.rb index 2ab36cb172..8f2bd6feea 100644 --- a/test/ruby/test_io_m17n.rb +++ b/test/ruby/test_io_m17n.rb @@ -19,9 +19,9 @@ class TestIO_M17N < Test::Unit::TestCase } end - def pipe(wp, rp) + def pipe(*args, wp, rp) re, we = nil, nil - r, w = IO.pipe + r, w = IO.pipe(*args) rt = Thread.new do begin rp.call(r) -- cgit v1.2.3