aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-03-03 19:45:08 -0800
committerCarl Lerche <carllerche@mac.com>2010-03-03 21:24:27 -0800
commit1f0f05b10c924d2f0d0ff4c74cbd979e77deea1d (patch)
tree34121d202d4d176944b26d51aec84edaaecf0286 /actionpack/test/template
parentb160663bd13d08bf845bc8cdf87a2c5e7e46f901 (diff)
downloadrails-1f0f05b10c924d2f0d0ff4c74cbd979e77deea1d.tar.gz
rails-1f0f05b10c924d2f0d0ff4c74cbd979e77deea1d.tar.bz2
rails-1f0f05b10c924d2f0d0ff4c74cbd979e77deea1d.zip
Move the original config method onto AbstractController
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/asset_tag_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb
index 8b24f66a6e..bbfab05a0f 100644
--- a/actionpack/test/template/asset_tag_helper_test.rb
+++ b/actionpack/test/template/asset_tag_helper_test.rb
@@ -5,7 +5,7 @@ class FakeController
attr_accessor :request
def config
- @config ||= ActiveSupport::InheritableOptions.new(ActionController::Metal.config)
+ @config ||= ActiveSupport::InheritableOptions.new(ActionController::Base.config)
end
end