aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/enumerable_test.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/test/core_ext/enumerable_test.rb b/activesupport/test/core_ext/enumerable_test.rb
index c37e0d269e..fb9b9b8916 100644
--- a/activesupport/test/core_ext/enumerable_test.rb
+++ b/activesupport/test/core_ext/enumerable_test.rb
@@ -65,8 +65,8 @@ class EnumerableTests < Test::Unit::TestCase
end
def test_several
- assert ![].several?
- assert ![ 1 ].several?
- assert [ 1, 2 ].several?
+ assert ![].many?
+ assert ![ 1 ].many?
+ assert [ 1, 2 ].many?
end
end