From 881ca628b0df2db19f70830f178b0d55efc299ca Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Sun, 1 Jan 2012 23:01:28 +0530 Subject: [PATCH] fix a warning about grouped expressions --- activesupport/test/core_ext/range_ext_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activesupport/test/core_ext/range_ext_test.rb b/activesupport/test/core_ext/range_ext_test.rb index 7a620305f30..e50b6c132a7 100644 --- a/activesupport/test/core_ext/range_ext_test.rb +++ b/activesupport/test/core_ext/range_ext_test.rb @@ -54,7 +54,7 @@ class RangeTest < Test::Unit::TestCase end def test_should_include_identical_exclusive_with_floats - assert (1.0...10.0).include?(1.0...10.0) + assert((1.0...10.0).include?(1.0...10.0)) end def test_blockless_step