ruby-changes:42792
From: akr <ko1@a...>
Date: Sun, 1 May 2016 20:53:43 +0900 (JST)
Subject: [ruby-changes:42792] akr:r54866 (trunk): update comments.
akr 2016-05-01 21:50:19 +0900 (Sun, 01 May 2016) New Revision: 54866 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=54866 Log: update comments. Modified files: trunk/test/dbm/test_dbm.rb trunk/test/gdbm/test_gdbm.rb trunk/test/sdbm/test_sdbm.rb Index: test/gdbm/test_gdbm.rb =================================================================== --- test/gdbm/test_gdbm.rb (revision 54865) +++ test/gdbm/test_gdbm.rb (revision 54866) @@ -273,7 +273,7 @@ if defined? GDBM https://github.com/ruby/ruby/blob/trunk/test/gdbm/test_gdbm.rb#L273 num += 1 if i == 0 assert_equal(num, @gdbm.size) - # Fixnum + # Integer assert_equal('200', @gdbm['100'] = '200') assert_equal('200', @gdbm['100']) Index: test/sdbm/test_sdbm.rb =================================================================== --- test/sdbm/test_sdbm.rb (revision 54865) +++ test/sdbm/test_sdbm.rb (revision 54866) @@ -171,7 +171,7 @@ class TestSDBM < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/sdbm/test_sdbm.rb#L171 num += 1 if i == 0 assert_equal(num, @sdbm.size) - # Fixnum + # Integer assert_equal('200', @sdbm['100'] = '200') assert_equal('200', @sdbm['100']) Index: test/dbm/test_dbm.rb =================================================================== --- test/dbm/test_dbm.rb (revision 54865) +++ test/dbm/test_dbm.rb (revision 54866) @@ -219,7 +219,7 @@ if defined? DBM https://github.com/ruby/ruby/blob/trunk/test/dbm/test_dbm.rb#L219 num += 1 if i == 0 assert_equal(num, @dbm.size) - # Fixnum + # Integer assert_equal('200', @dbm['100'] = '200') assert_equal('200', @dbm['100']) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/