From 594f2fcfc0ecaf32e144357f78d96f4c440e4e25 Mon Sep 17 00:00:00 2001 From: nagachika Date: Thu, 17 Feb 2011 13:37:55 +0000 Subject: * test/ruby/test_marshal.rb (test_marshal_dump_extra_iv): fix a typo of local variable. [Bug #3720] [ruby-dev:42083] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30891 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_marshal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/ruby/test_marshal.rb b/test/ruby/test_marshal.rb index e1dc7675ef..b7f1a0093b 100644 --- a/test/ruby/test_marshal.rb +++ b/test/ruby/test_marshal.rb @@ -431,7 +431,7 @@ class TestMarshal < Test::Unit::TestCase m = Marshal.dump(o) } o2 = Marshal.load(m) - assert_equal(STDIN, o.stdin) + assert_equal(STDIN, o2.stdin) end def test_marshal_string_encoding -- cgit v1.2.1