summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/envutil.rb2
-rw-r--r--test/ruby/test_object.rb2
-rw-r--r--test/test_mathn.rb4
3 files changed, 4 insertions, 4 deletions
diff --git a/test/ruby/envutil.rb b/test/ruby/envutil.rb
index 0c3fbf9f55..f8ca78a524 100644
--- a/test/ruby/envutil.rb
+++ b/test/ruby/envutil.rb
@@ -83,7 +83,7 @@ module EnvUtil
in_c.close
out_c.close if capture_stdout
err_c.close if capture_stderr
- in_p.write stdin_data
+ in_p.write stdin_data.to_str
in_p.close
th_stdout = Thread.new { out_p.read } if capture_stdout
th_stderr = Thread.new { err_p.read } if capture_stderr
diff --git a/test/ruby/test_object.rb b/test/ruby/test_object.rb
index ebc10fc650..8352b03979 100644
--- a/test/ruby/test_object.rb
+++ b/test/ruby/test_object.rb
@@ -399,7 +399,7 @@ class TestObject < Test::Unit::TestCase
def test_superclass_method
bug2312 = '[ruby-dev:39581]'
assert_in_out_err(["-e", "module Enumerable;undef min;end; (1..2).min{}"],
- [], [], /no superclass method/, bug2312)
+ "", [], /no superclass method/, bug2312)
end
def test_specific_eval_with_wrong_arguments
diff --git a/test/test_mathn.rb b/test/test_mathn.rb
index d0bf03760d..7083568525 100644
--- a/test/test_mathn.rb
+++ b/test/test_mathn.rb
@@ -4,7 +4,7 @@ require_relative 'ruby/envutil'
# mathn redefines too much. It must be isolated to child processes.
class TestMathn < Test::Unit::TestCase
def test_power
- assert_in_out_err ['-r', 'mathn', '-e', '1**2'], [], [], [], '[ruby-core:25740]'
- assert_in_out_err ['-r', 'mathn', '-e', '(1<<126)**2'], [], [], [], '[ruby-core:25740]'
+ assert_in_out_err ['-r', 'mathn', '-e', '1**2'], "", [], [], '[ruby-core:25740]'
+ assert_in_out_err ['-r', 'mathn', '-e', '(1<<126)**2'], "", [], [], '[ruby-core:25740]'
end
end