aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/abstract_unit.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-01-31 21:16:33 -0700
committerSean Griffin <sean@seantheprogrammer.com>2015-01-31 21:16:33 -0700
commitad83233eee3a5beb48919a91b4c109ff8c145f6b (patch)
tree2aef8dd1b83a5729118fe829836207ff91fb3045 /actionview/test/abstract_unit.rb
parentf6160cf0506fb49d4340f0e9b7bfe0430a9750d3 (diff)
parentce8efcf296479b506ff36695398f6c88ea3c9e72 (diff)
downloadrails-ad83233eee3a5beb48919a91b4c109ff8c145f6b.tar.gz
rails-ad83233eee3a5beb48919a91b4c109ff8c145f6b.tar.bz2
rails-ad83233eee3a5beb48919a91b4c109ff8c145f6b.zip
Merge pull request #18767 from robertomiranda/ruby-2.2
Use public Module#include, in favor of https://bugs.ruby-lang.org/issues/8846
Diffstat (limited to 'actionview/test/abstract_unit.rb')
-rw-r--r--actionview/test/abstract_unit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/abstract_unit.rb b/actionview/test/abstract_unit.rb
index 4aa56f60f7..fc1ca9efdf 100644
--- a/actionview/test/abstract_unit.rb
+++ b/actionview/test/abstract_unit.rb
@@ -268,7 +268,7 @@ class Rack::TestCase < ActionDispatch::IntegrationTest
end
end
-ActionView::RoutingUrlFor.send(:include, ActionDispatch::Routing::UrlFor)
+ActionView::RoutingUrlFor.include(ActionDispatch::Routing::UrlFor)
module ActionController
class Base