aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2012-02-10 20:55:10 +0900
committerkennyj <kennyj@gmail.com>2012-02-21 12:43:41 +0900
commit39d461703361834c2e51dd9179afce0f8a0a83ff (patch)
tree71a06a722a6259f946c3eaeca76dcb9c0c8d0384 /activesupport/test
parentb80d8f71112279f989ad3accbfed277a25cedd57 (diff)
downloadrails-39d461703361834c2e51dd9179afce0f8a0a83ff.tar.gz
rails-39d461703361834c2e51dd9179afce0f8a0a83ff.tar.bz2
rails-39d461703361834c2e51dd9179afce0f8a0a83ff.zip
Fix some warnings on 3-2-stable
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/range_ext_test.rb2
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 f9fb4f833a..360c97031c 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