aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-04-08 23:54:36 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-04-08 23:54:36 -0300
commit5c7bcfc111275087d428e7f446d10bf31f1c841c (patch)
tree1fe030edf1ac79824e33d44829f32c6e851627fa /actionpack/test/template
parent56d9945e8a9613c2983c3ab60600bac6e58b58d8 (diff)
downloadrails-5c7bcfc111275087d428e7f446d10bf31f1c841c.tar.gz
rails-5c7bcfc111275087d428e7f446d10bf31f1c841c.tar.bz2
rails-5c7bcfc111275087d428e7f446d10bf31f1c841c.zip
default_url_options does not receive one argument anymore
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/url_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb
index bc45fabf34..734b6f3aef 100644
--- a/actionpack/test/template/url_helper_test.rb
+++ b/actionpack/test/template/url_helper_test.rb
@@ -548,7 +548,7 @@ class UrlHelperControllerTest < ActionController::TestCase
def test_named_route_should_show_host_and_path_using_controller_default_url_options
class << @controller
- def default_url_options(options = nil)
+ def default_url_options
{:host => 'testtwo.host'}
end
end