1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

update comments.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2016-05-01 12:50:19 +00:00
parent 9ac296698a
commit 0565551930
3 changed files with 3 additions and 3 deletions

View file

@ -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'])

View file

@ -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'])

View file

@ -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'])