diff options
author | Carlhuda <carlhuda@engineyard.com> | 2010-03-04 17:44:16 -0800 |
---|---|---|
committer | Carlhuda <carlhuda@engineyard.com> | 2010-03-04 17:44:16 -0800 |
commit | 46bf2f04a87c56826963958eaf370d9262526af0 (patch) | |
tree | f38f13864aa2d960acddd8248682b927527d50d2 /actionmailer/test | |
parent | 900a2d304a83bad7a3958464b8dfa6fb49670686 (diff) | |
download | rails-46bf2f04a87c56826963958eaf370d9262526af0.tar.gz rails-46bf2f04a87c56826963958eaf370d9262526af0.tar.bz2 rails-46bf2f04a87c56826963958eaf370d9262526af0.zip |
Fixed a broken AM test. I'm unsure how this passed before.
Diffstat (limited to 'actionmailer/test')
-rw-r--r-- | actionmailer/test/old_base/asset_host_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionmailer/test/old_base/asset_host_test.rb b/actionmailer/test/old_base/asset_host_test.rb index 75fe2a6168..0ec0242f55 100644 --- a/actionmailer/test/old_base/asset_host_test.rb +++ b/actionmailer/test/old_base/asset_host_test.rb @@ -42,7 +42,7 @@ class AssetHostTest < Test::Unit::TestCase end def test_asset_host_as_two_arguement_proc - ActionController::Base.asset_host = Proc.new {|source,request| + ActionController::Base.config.asset_host = Proc.new {|source,request| if request && request.ssl? "https://www.example.com" else |