diff options
author | a_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-12-12 12:12:39 +0000 |
---|---|---|
committer | a_matsuda <a_matsuda@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-12-12 12:12:39 +0000 |
commit | 3baa1d23bc948f33afc9083001b2e0c38fdae7fc (patch) | |
tree | a3ebaa678ec2470a34947de1ea057682f005d860 /test/ruby/test_method.rb | |
parent | 476a539ff6a22db1bdd565d7e64b57ad04bc841b (diff) | |
download | ruby-3baa1d23bc948f33afc9083001b2e0c38fdae7fc.tar.gz |
Unneeded assertion
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61159 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_method.rb')
-rw-r--r-- | test/ruby/test_method.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index b3d4098a1c..e016662375 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -1019,7 +1019,6 @@ class TestMethod < Test::Unit::TestCase end def test_eqq - assert(Method.instance_methods(false).include? :===) assert_operator(0.method(:<), :===, 5) assert_not_operator(0.method(:<), :===, -5) end |