aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/new_base/test_helper.rb
diff options
context:
space:
mode:
authorYehuda Katz <wycats@yehuda-katzs-macbookpro41.local>2009-05-23 00:39:32 -0700
committerYehuda Katz <wycats@yehuda-katzs-macbookpro41.local>2009-05-23 00:39:32 -0700
commite22a3d893ef8441fb52320315c5e348c6c208b69 (patch)
treeefdbc4f2bece84bf500284a4a8dce9a7ef839324 /actionpack/test/new_base/test_helper.rb
parent3ac6d8f8b01fb04b8d6d35d75d802b41f4c256c9 (diff)
downloadrails-e22a3d893ef8441fb52320315c5e348c6c208b69.tar.gz
rails-e22a3d893ef8441fb52320315c5e348c6c208b69.tar.bz2
rails-e22a3d893ef8441fb52320315c5e348c6c208b69.zip
Slightly modify things to get content type matching working without breaking other code
Diffstat (limited to 'actionpack/test/new_base/test_helper.rb')
-rw-r--r--actionpack/test/new_base/test_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/new_base/test_helper.rb b/actionpack/test/new_base/test_helper.rb
index 89c1290063..d92029df7f 100644
--- a/actionpack/test/new_base/test_helper.rb
+++ b/actionpack/test/new_base/test_helper.rb
@@ -67,7 +67,7 @@ class Rack::TestCase < ActionController::IntegrationTest
def get(thing, *args)
if thing.is_a?(Symbol)
- super("#{self.class.testing}/#{thing}")
+ super("#{self.class.testing}/#{thing}", *args)
else
super
end