From e26d11c876d11bae09b95df941d14e21ac93e2f0 Mon Sep 17 00:00:00 2001
From: Prem Sichanugrist <s@sikac.hu>
Date: Tue, 14 Jul 2015 09:27:42 -0400
Subject: 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.
---
 actionview/lib/action_view/test_case.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'actionview/lib')

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 = {}
-- 
cgit v1.2.3