aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
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 /actionpack/lib
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 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/test_case.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/test_case.rb b/actionpack/lib/action_controller/test_case.rb
index 558c03008e..098ef09c0e 100644
--- a/actionpack/lib/action_controller/test_case.rb
+++ b/actionpack/lib/action_controller/test_case.rb
@@ -230,7 +230,7 @@ module ActionController
# request. You can modify this object before sending the HTTP request. For example,
# you might want to set some session properties before sending a GET request.
# <b>@response</b>::
- # An ActionController::TestResponse object, representing the response
+ # An ActionDispatch::TestResponse object, representing the response
# of the last HTTP response. In the above example, <tt>@response</tt> becomes valid
# after calling +post+. If the various assert methods are not sufficient, then you
# may use this object to inspect the HTTP response in detail.