1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nagachika 2011-02-17 13:37:55 +00:00
parent 1d403c3beb
commit 594f2fcfc0
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Feb 17 22:32:35 2011 CHIKANAGA Tomoyuki <nagachika00@gmail.com>
* test/ruby/test_marshal.rb (test_marshal_dump_extra_iv):
fix a typo of local variable. [Bug #3720] [ruby-dev:42083]
Thu Feb 17 21:32:53 2011 Tanaka Akira <akr@fsij.org> Thu Feb 17 21:32:53 2011 Tanaka Akira <akr@fsij.org>
* ext/openssl/ossl.h: parenthesize macro arguments. * ext/openssl/ossl.h: parenthesize macro arguments.

View file

@ -431,7 +431,7 @@ class TestMarshal < Test::Unit::TestCase
m = Marshal.dump(o) m = Marshal.dump(o)
} }
o2 = Marshal.load(m) o2 = Marshal.load(m)
assert_equal(STDIN, o.stdin) assert_equal(STDIN, o2.stdin)
end end
def test_marshal_string_encoding def test_marshal_string_encoding