diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-01 12:50:19 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-05-01 12:50:19 +0000 |
commit | 05655519308b22f55702feea8d6093c4950ecc6f (patch) | |
tree | 925a25834ae74a8f1a11e2316479f8ec30049767 /test | |
parent | 9ac296698a7ac34da43a0dd32d385d05e16f8a94 (diff) |
update comments.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r-- | test/dbm/test_dbm.rb | 2 | ||||
-rw-r--r-- | test/gdbm/test_gdbm.rb | 2 | ||||
-rw-r--r-- | test/sdbm/test_sdbm.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/dbm/test_dbm.rb b/test/dbm/test_dbm.rb index cd8c3fd8d3..d6211fcb31 100644 --- a/test/dbm/test_dbm.rb +++ b/test/dbm/test_dbm.rb @@ -219,7 +219,7 @@ if defined? DBM num += 1 if i == 0 assert_equal(num, @dbm.size) - # Fixnum + # Integer assert_equal('200', @dbm['100'] = '200') assert_equal('200', @dbm['100']) diff --git a/test/gdbm/test_gdbm.rb b/test/gdbm/test_gdbm.rb index 0a42da386c..aaf0bf7459 100644 --- a/test/gdbm/test_gdbm.rb +++ b/test/gdbm/test_gdbm.rb @@ -273,7 +273,7 @@ if defined? GDBM num += 1 if i == 0 assert_equal(num, @gdbm.size) - # Fixnum + # Integer assert_equal('200', @gdbm['100'] = '200') assert_equal('200', @gdbm['100']) diff --git a/test/sdbm/test_sdbm.rb b/test/sdbm/test_sdbm.rb index 154bccebc4..7b2d39c9a1 100644 --- a/test/sdbm/test_sdbm.rb +++ b/test/sdbm/test_sdbm.rb @@ -171,7 +171,7 @@ class TestSDBM < Test::Unit::TestCase num += 1 if i == 0 assert_equal(num, @sdbm.size) - # Fixnum + # Integer assert_equal('200', @sdbm['100'] = '200') assert_equal('200', @sdbm['100']) |