aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorRichard Schneeman <richard.schneeman@gmail.com>2015-03-01 23:00:08 -0600
committerRichard Schneeman <richard.schneeman@gmail.com>2015-03-01 23:00:08 -0600
commitc34a5bff94e2af111f7c7f8f0bce8f94e1fd798b (patch)
tree5c9c2939bc4ecb620efcac58baa0df25043e04d2 /activesupport/test
parent485e125668cb3a3d5523dcef78e5155ea1957d9e (diff)
parent7c34548fe0c7c5078fe9672e236630597be50d13 (diff)
downloadrails-c34a5bff94e2af111f7c7f8f0bce8f94e1fd798b.tar.gz
rails-c34a5bff94e2af111f7c7f8f0bce8f94e1fd798b.tar.bz2
rails-c34a5bff94e2af111f7c7f8f0bce8f94e1fd798b.zip
Merge pull request #19163 from JuanitoFatas/feautre/enumerable-without-take-2
Use include? instead of in? for Enumerable#without.
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/core_ext/enumerable_test.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/test/core_ext/enumerable_test.rb b/activesupport/test/core_ext/enumerable_test.rb
index c8123a022a..e5d8ae7882 100644
--- a/activesupport/test/core_ext/enumerable_test.rb
+++ b/activesupport/test/core_ext/enumerable_test.rb
@@ -1,7 +1,6 @@
require 'abstract_unit'
require 'active_support/core_ext/array'
require 'active_support/core_ext/enumerable'
-require 'active_support/core_ext/object/inclusion'
Payment = Struct.new(:price)
class SummablePayment < Payment