aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/test_case.rb
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2015-07-14 09:27:42 -0400
committerPrem Sichanugrist <s@sikac.hu>2015-07-14 09:27:42 -0400
commite26d11c876d11bae09b95df941d14e21ac93e2f0 (patch)
treea4b294c64f5e74799261cda35c47556a4060209e /actionview/lib/action_view/test_case.rb
parent368b9938ec9d8fbb8146e65c1edf744d32d207c9 (diff)
downloadrails-e26d11c876d11bae09b95df941d14e21ac93e2f0.tar.gz
rails-e26d11c876d11bae09b95df941d14e21ac93e2f0.tar.bz2
rails-e26d11c876d11bae09b95df941d14e21ac93e2f0.zip
Change AC::TestResponse to AD::TestResponse
ActionController::TestResponse was removed in d9fe10c and caused a test failure on Action View as its test case still refers to it.
Diffstat (limited to 'actionview/lib/action_view/test_case.rb')
-rw-r--r--actionview/lib/action_view/test_case.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/lib/action_view/test_case.rb b/actionview/lib/action_view/test_case.rb
index b4f36c1f78..c4bc26ca8a 100644
--- a/actionview/lib/action_view/test_case.rb
+++ b/actionview/lib/action_view/test_case.rb
@@ -25,7 +25,7 @@ module ActionView
super
self.class.controller_path = ""
@request = ActionController::TestRequest.create
- @response = ActionController::TestResponse.new
+ @response = ActionDispatch::TestResponse.new
@request.env.delete('PATH_INFO')
@params = {}