aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract_unit.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2014-07-02 15:55:25 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2014-07-15 15:53:00 -0700
commitf3c1832ad44e5e8b256e5548623a445a83b09c1f (patch)
tree0d9275125095318a4008f1d16bc994c855cf55d1 /actionpack/test/abstract_unit.rb
parent8e105a55383a3c94dfe3507c37b79a5e4fe85276 (diff)
downloadrails-f3c1832ad44e5e8b256e5548623a445a83b09c1f.tar.gz
rails-f3c1832ad44e5e8b256e5548623a445a83b09c1f.tar.bz2
rails-f3c1832ad44e5e8b256e5548623a445a83b09c1f.zip
stop passing recall to url_for
Diffstat (limited to 'actionpack/test/abstract_unit.rb')
-rw-r--r--actionpack/test/abstract_unit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb
index 59a23a5e4b..a427bd5191 100644
--- a/actionpack/test/abstract_unit.rb
+++ b/actionpack/test/abstract_unit.rb
@@ -348,8 +348,8 @@ module ActionDispatch
end
module RoutingTestHelpers
- def url_for(set, options, recall = {})
- set.url_for options.merge(:only_path => true, :_recall => recall)
+ def url_for(set, options)
+ set.url_for options.merge(:only_path => true)
end
def make_set(strict = true)