diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-01-01 23:01:28 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-01-01 23:01:28 +0530 |
commit | 881ca628b0df2db19f70830f178b0d55efc299ca (patch) | |
tree | c0b069096e680d8192c6cb6b162ed7aa7107b971 /activesupport/test | |
parent | f3e079e8b54da1c4d0511495ced3f68c1b7a46f1 (diff) | |
download | rails-881ca628b0df2db19f70830f178b0d55efc299ca.tar.gz rails-881ca628b0df2db19f70830f178b0d55efc299ca.tar.bz2 rails-881ca628b0df2db19f70830f178b0d55efc299ca.zip |
fix a warning about grouped expressions
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/range_ext_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/range_ext_test.rb b/activesupport/test/core_ext/range_ext_test.rb index 7a620305f3..e50b6c132a 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 |