aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_float.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_float.rb')
-rw-r--r--test/ruby/test_float.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb
index eccc86740a..5a566879b7 100644
--- a/test/ruby/test_float.rb
+++ b/test/ruby/test_float.rb
@@ -723,8 +723,8 @@ class TestFloat < Test::Unit::TestCase
end
def test_round_half_invalid
- assert_raise_with_message(ArgumentError, /nil/) {
- 1.0.round(half: nil)
+ assert_raise_with_message(ArgumentError, /Object/) {
+ 1.0.round(half: Object)
}
assert_raise_with_message(ArgumentError, /xxx/) {
1.0.round(half: "\0xxx")