mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix a method name
* test/ruby/test_optimization.rb (test_fixnum_ge): Fix a method name to suppress method redefinition warnings. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2d719aef2b
commit
1f4ac8860b
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class TestRubyOptimization < Test::Unit::TestCase
|
|||
assert_redefine_method('Float', '>', 'assert_equal 2.2, 1.1 > 2.2')
|
||||
end
|
||||
|
||||
def test_fixnum_ge
|
||||
def test_float_ge
|
||||
assert_equal false, 1.1 >= 2.2
|
||||
assert_redefine_method('Float', '>=', 'assert_equal 2.2, 1.1 >= 2.2')
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue