From 21051676fcd8c8044f6ea2269c59c05370846f34 Mon Sep 17 00:00:00 2001 From: Arun Agrawal Date: Mon, 1 Oct 2012 16:20:36 +0530 Subject: warning fixed: (...) interpreted as grouped expression --- activesupport/test/caching_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/test/caching_test.rb b/activesupport/test/caching_test.rb index 75540346c1..febf0eeeff 100644 --- a/activesupport/test/caching_test.rb +++ b/activesupport/test/caching_test.rb @@ -855,7 +855,7 @@ class CacheEntryTest < ActiveSupport::TestCase value = "value" * 100 entry = ActiveSupport::Cache::Entry.new(value, :compress => true, :compress_threshold => 1) assert_equal value, entry.value - assert (value.bytesize > entry.size), "value is compressed" + assert(value.bytesize > entry.size, "value is compressed") end def test_non_compress_values -- cgit v1.2.3