From 32225387c1e714f742b07fdf7121a2a0bc523c62 Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sun, 27 Nov 2016 22:20:38 +0900 Subject: use public Module#include instead of send :include Follow up to #18767 --- activesupport/test/concern_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport/test') 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 -- cgit v1.2.3