From 7f1eef9b01ebc9b1a7bc4734c5c6dd8d35755298 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Sun, 30 Sep 2012 12:37:59 -0700 Subject: [PATCH] Fix other assertions that were backwards. This time I used ack. --- activesupport/test/caching_test.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb index a2283db899db5..f8e4dd6349220 100644 --- a/activesupport/test/caching_test.rb +++ b/activesupport/test/caching_test.rb @@ -659,12 +659,12 @@ def test_prune_size_on_write assert @cache.exist?(9) assert @cache.exist?(8) assert @cache.exist?(7) - assert "no entry", !@cache.exist?(6) - assert "no entry", !@cache.exist?(5) + assert !@cache.exist?(6), "no entry" + assert !@cache.exist?(5), "no entry" assert @cache.exist?(4) - assert "no entry", !@cache.exist?(3) + assert !@cache.exist?(3), "no entry" assert @cache.exist?(2) - assert "no entry", !@cache.exist?(1) + assert !@cache.exist?(1), "no entry" end def test_pruning_is_capped_at_a_max_time @@ -855,7 +855,7 @@ def test_compress_values value = "value" * 100 entry = ActiveSupport::Cache::Entry.new(value, :compress => true, :compress_threshold => 1) assert_equal value, entry.value - assert "value is compressed", (value.bytesize > entry.size) + assert (value.bytesize > entry.size), "value is compressed" end def test_non_compress_values