aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-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