summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-30 14:53:15 +0000
committerseki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-30 14:53:15 +0000
commita91d0bfdbaaa1e55c39d9b62da342335b5e776ed (patch)
tree9ea99feec82f21ce882db47ad7400b35cc1902a9 /test
parentab8e1012646994e8f6800b0b4bb66fbec3c7e9f8 (diff)
downloadruby-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
Diffstat (limited to 'test')
-rw-r--r--test/rinda/test_tuplebag.rb6
1 files changed, 3 insertions, 3 deletions
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