summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_argf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_argf.rb b/test/ruby/test_argf.rb
index a58b70db52..7fb9348c1e 100644
--- a/test/ruby/test_argf.rb
+++ b/test/ruby/test_argf.rb
@@ -781,9 +781,9 @@ class TestArgf < Test::Unit::TestCase
def test_chars
ruby('-e', <<-SRC, @t1.path, @t2.path, @t3.path) do |f|
- print Marshal.dump(ARGF.chars.to_a)
+ print [Marshal.dump(ARGF.chars.to_a)].pack('m')
SRC
- assert_equal(["1", "\n", "2", "\n", "3", "\n", "4", "\n", "5", "\n", "6", "\n"], Marshal.load(f.read))
+ assert_equal(["1", "\n", "2", "\n", "3", "\n", "4", "\n", "5", "\n", "6", "\n"], Marshal.load(f.read.unpack('m').first))
end
end