From a2a32f9f02cf0ee90b1d7c8bb35ce6e9f9eb222e Mon Sep 17 00:00:00 2001 From: seki Date: Sat, 30 Aug 2008 14:53:15 +0000 Subject: fix failures [ruby-dev:35937]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18956 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rinda/test_tuplebag.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test') diff --git a/test/rinda/test_tuplebag.rb b/test/rinda/test_tuplebag.rb index eccf372125..e1ca1bde6c 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 -- cgit v1.2.3