From 60dad06d53757ece68be7bcd1968462cf1dee18a Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 26 Feb 2016 05:41:37 +0000 Subject: numeric.c: wrong type step should raise TypeError * numeric.c (num_step_scan_args): comparison String with Numeric should raise TypeError. it is an invalid type, but not a mismatch the number of arguments. [ruby-core:62430] [Bug #9810] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_float.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby/test_float.rb') diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb index 3afd26d0b4..aeac359081 100644 --- a/test/ruby/test_float.rb +++ b/test/ruby/test_float.rb @@ -601,7 +601,7 @@ class TestFloat < Test::Unit::TestCase end def test_num2dbl - assert_raise(ArgumentError) do + assert_raise(TypeError) do 1.0.step(2.0, "0.5") {} end assert_raise(TypeError) do -- cgit v1.2.3