aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_integer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_integer.rb')
-rw-r--r--test/ruby/test_integer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_integer.rb b/test/ruby/test_integer.rb
index 7087084d37..55dbf35cc7 100644
--- a/test/ruby/test_integer.rb
+++ b/test/ruby/test_integer.rb
@@ -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