git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14012 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2007-11-25 07:47:51 +00:00
Родитель 369697bceb
Коммит 43090c9f50
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -495,7 +495,7 @@ class TestInteger < Test::Unit::TestCase
VS.each {|a|
s = a.to_s(radix)
b = s.to_i(radix)
assert_equal(a, b)
assert_equal(a, b, "(#{a}).to_s(#{radix}).to_i(#{radix})")
}
}
end