aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2016-11-27 23:31:13 -0300
committerGitHub <noreply@github.com>2016-11-27 23:31:13 -0300
commit45edcde78fd5e0c39173001a6ab9d1c7689c6383 (patch)
treec65e1791874e2d1e1eb2be9c3500b006964f099c /activesupport
parent8b2505347ff020231e82dbdf55b5fadccf109770 (diff)
parent32225387c1e714f742b07fdf7121a2a0bc523c62 (diff)
downloadrails-45edcde78fd5e0c39173001a6ab9d1c7689c6383.tar.gz
rails-45edcde78fd5e0c39173001a6ab9d1c7689c6383.tar.bz2
rails-45edcde78fd5e0c39173001a6ab9d1c7689c6383.zip
Merge pull request #27195 from y-yagi/use_public_module_include
use public Module#include instead of send :include
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/test/concern_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/test/concern_test.rb b/activesupport/test/concern_test.rb
index 95507c815d..7a5a5414a7 100644
--- a/activesupport/test/concern_test.rb
+++ b/activesupport/test/concern_test.rb
@@ -76,7 +76,7 @@ class ConcernTest < ActiveSupport::TestCase
end
def test_class_methods_are_extended_only_on_expected_objects
- ::Object.__send__(:include, Qux)
+ ::Object.include(Qux)
Object.extend(Qux::ClassMethods)
# module needs to be created after Qux is included in Object or bug won't
# be triggered