mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix object address test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2611 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2f2143a2be
commit
788181a4eb
1 changed files with 1 additions and 1 deletions
|
@ -536,7 +536,7 @@ if __FILE__ == $0
|
|||
def test_object
|
||||
a = Object.new
|
||||
a.instance_eval {@a = a}
|
||||
hex = '0x' + ('%x'%a.id)
|
||||
hex = '0x' + ('%x' % (a.id * 2))
|
||||
assert_equal("#<Object:#{hex} @a=#<Object:#{hex} ...>>\n", PP.pp(a, 79, ''))
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue