diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2016-11-27 23:31:13 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-27 23:31:13 -0300 |
commit | 45edcde78fd5e0c39173001a6ab9d1c7689c6383 (patch) | |
tree | c65e1791874e2d1e1eb2be9c3500b006964f099c /actionpack | |
parent | 8b2505347ff020231e82dbdf55b5fadccf109770 (diff) | |
parent | 32225387c1e714f742b07fdf7121a2a0bc523c62 (diff) | |
download | rails-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 'actionpack')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index d8be5d32e1..d3aa81a0f7 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -145,7 +145,7 @@ class IntegrationTestTest < ActiveSupport::TestCase name.to_s == "foo" ? "pass" : super end end - @test.class.superclass.__send__(:include, mixin) + @test.class.superclass.include(mixin) begin assert_equal "pass", @test.foo ensure |