diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-21 18:06:04 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-21 18:06:04 +0000 |
commit | a7955b31c04a2a66ad1ac270b7dd8a85ea48f52a (patch) | |
tree | e04baa52437bd1de060708457b06174627f066da /test/ruby/test_range.rb | |
parent | f73e6f5a537dc8cb8859101ad1b76860ed382b19 (diff) |
hash method values
* test/ruby/test_{complex,range,rational,struct}.rb (test_hash):
hash values should be an Integer, not only a Fixnum.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_range.rb')
-rw-r--r-- | test/ruby/test_range.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_range.rb b/test/ruby/test_range.rb index 2bff105936..bba7726112 100644 --- a/test/ruby/test_range.rb +++ b/test/ruby/test_range.rb @@ -138,7 +138,7 @@ class TestRange < Test::Unit::TestCase end def test_hash - assert_fixnum((0..1).hash) + assert_kind_of(Integer, (0..1).hash) assert_equal((0..1).hash, (0..1).hash) assert_not_equal((0..1).hash, (0...1).hash) end |