diff options
| author | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-30 14:53:15 +0000 |
|---|---|---|
| committer | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-08-30 14:53:15 +0000 |
| commit | a91d0bfdbaaa1e55c39d9b62da342335b5e776ed (patch) | |
| tree | 9ea99feec82f21ce882db47ad7400b35cc1902a9 | |
| parent | ab8e1012646994e8f6800b0b4bb66fbec3c7e9f8 (diff) | |
| download | ruby-a91d0bfdbaaa1e55c39d9b62da342335b5e776ed.tar.gz ruby-a91d0bfdbaaa1e55c39d9b62da342335b5e776ed.tar.xz ruby-a91d0bfdbaaa1e55c39d9b62da342335b5e776ed.zip | |
fix failures [ruby-dev:35937].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/rinda/test_tuplebag.rb | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Sat Aug 30 23:51:01 2008 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> + + * test/rinda/test_tuplebag.rb (test_has_expires_eh): fix failures + [ruby-dev:35937]. + Sat Aug 30 23:38:00 2008 Tanaka Akira <akr@fsij.org> * ext/dl/test/test_import.rb: fix character code. diff --git a/test/rinda/test_tuplebag.rb b/test/rinda/test_tuplebag.rb index eccf37212..e1ca1bde6 100644 --- a/test/rinda/test_tuplebag.rb +++ b/test/rinda/test_tuplebag.rb @@ -134,16 +134,16 @@ class TestTupleBag < Test::Unit::TestCase end def test_has_expires_eh - assert_equal false, @tb.has_expires? + assert !@tb.has_expires? t = tup(:val, 1) @tb.push t - assert_equal true, @tb.has_expires? + assert @tb.has_expires? t.renew Object.new - assert_equal false, @tb.has_expires? + assert !@tb.has_expires? end def test_push |
