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:
parent
9ac296698a
commit
0565551930
3 changed files with 3 additions and 3 deletions
|
@ -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'])
|
||||
|
||||
|
|
|
@ -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'])
|
||||
|
||||
|
|
|
@ -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'])
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue