aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-02-21 03:17:41 -0800
committerSantiago Pastorino <santiago@wyeworks.com>2012-02-21 03:17:41 -0800
commitc4265914fb1775b09a8a29f606f1b9535e5d4146 (patch)
tree71a06a722a6259f946c3eaeca76dcb9c0c8d0384 /activesupport
parentb80d8f71112279f989ad3accbfed277a25cedd57 (diff)
parent39d461703361834c2e51dd9179afce0f8a0a83ff (diff)
downloadrails-c4265914fb1775b09a8a29f606f1b9535e5d4146.tar.gz
rails-c4265914fb1775b09a8a29f606f1b9535e5d4146.tar.bz2
rails-c4265914fb1775b09a8a29f606f1b9535e5d4146.zip
Merge pull request #5106 from kennyj/fix_warnings_20120210
[3-2-stable] Fix some warnings
Diffstat (limited to 'activesupport')
-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