* test/ruby/{marshaltestlib,test_marshal}.rb: suppressed warnings.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-10-21 03:37:40 +00:00
parent f04debed3b
commit 4e786ee162
2 changed files with 4 additions and 4 deletions

View file

@ -286,8 +286,8 @@ module MarshalTestLib
o = "abc"
o.extend(Mod1)
str = MyString.new(o, "c")
marshal_equal(str) { |o|
assert(o.instance_eval { @v }).kind_of?(Mod1)
marshal_equal(str) { |v|
assert(v.instance_eval { @v }).kind_of?(Mod1)
}
end