aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/controller
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2010-12-26 23:44:51 -0800
committerwycats <wycats@gmail.com>2010-12-26 23:44:51 -0800
commit7c568fda6ba2d6621a0872e4bc0c71bb2d13e65f (patch)
treea8970b817b89488117efbc86658b07f4738b78c4 /actionpack/test/controller
parent6c5a3bb3125735760e92f49c3824d757ef87c61e (diff)
downloadrails-7c568fda6ba2d6621a0872e4bc0c71bb2d13e65f.tar.gz
rails-7c568fda6ba2d6621a0872e4bc0c71bb2d13e65f.tar.bz2
rails-7c568fda6ba2d6621a0872e4bc0c71bb2d13e65f.zip
A bunch of cleanup on the inherited template patch
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r--actionpack/test/controller/mime_responds_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/mime_responds_test.rb b/actionpack/test/controller/mime_responds_test.rb
index 98c9d43b93..fe14d24327 100644
--- a/actionpack/test/controller/mime_responds_test.rb
+++ b/actionpack/test/controller/mime_responds_test.rb
@@ -565,7 +565,7 @@ class RespondWithController < ActionController::Base
def using_resource_with_action
respond_with(resource, :action => :foo) do |format|
- format.html { raise ActionView::MissingTemplate.new([], "foo/bar", {}, false) }
+ format.html { raise ActionView::MissingTemplate.new([], "bar", ["foo"], {}, false) }
end
end