summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 12:30:51 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-05-01 12:30:51 +0000
commit9ac296698a7ac34da43a0dd32d385d05e16f8a94 (patch)
tree4a5f049589b30f46642371189d76410bc635edd3 /test/ruby
parent54916154a0c90750377044df024223b694b28e1e (diff)
Fix a test message.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54865 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_file_exhaustive.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_file_exhaustive.rb b/test/ruby/test_file_exhaustive.rb
index 4538cf3b61..e3417dff73 100644
--- a/test/ruby/test_file_exhaustive.rb
+++ b/test/ruby/test_file_exhaustive.rb
@@ -184,7 +184,7 @@ class TestFileExhaustive < Test::Unit::TestCase
end
def assert_integer_or_nil(n)
- msg = ->{"#{n.inspect} is neither Fixnum nor nil."}
+ msg = ->{"#{n.inspect} is neither Integer nor nil."}
if n
assert_kind_of(Integer, n, msg)
else