summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-27 05:56:01 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-10-27 05:56:01 +0000
commitc265d57595a1d799c433de2422aeaa22f7ab5706 (patch)
tree104a88f06ad5a90bad0f201f8ba095e799a56769 /test/ruby
parenta012bf6ed432028dd3fe8fc75dc7451c23407151 (diff)
* 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
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_io_m17n.rb4
1 files changed, 2 insertions, 2 deletions
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)