diff options
author | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2013-11-29 19:21:11 +0530 |
---|---|---|
committer | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2013-11-29 19:21:11 +0530 |
commit | e6bccef3d0a75e0ab92b7bb5285d19c2c23bcae4 (patch) | |
tree | 6f4d3d2a6fb5d04b9b613596f89caf7c8457dd66 | |
parent | 0322b6a835297741c47200aab3f1364d78d4aaa3 (diff) | |
download | rails-e6bccef3d0a75e0ab92b7bb5285d19c2c23bcae4.tar.gz rails-e6bccef3d0a75e0ab92b7bb5285d19c2c23bcae4.tar.bz2 rails-e6bccef3d0a75e0ab92b7bb5285d19c2c23bcae4.zip |
Typo fix
-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 854b0a38bd..6d6afc85c4 100644 --- a/activesupport/test/core_ext/range_ext_test.rb +++ b/activesupport/test/core_ext/range_ext_test.rb @@ -42,7 +42,7 @@ class RangeTest < ActiveSupport::TestCase assert((1...10).include?(1...10)) end - def test_should_include_other_with_exlusive_end + def test_should_include_other_with_exclusive_end assert((1..10).include?(1...10)) end |