aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-07-14 12:26:30 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-07-14 12:26:30 -0300
commit7645a5f85d7fc88b5f05f7fe4b73b743078bb069 (patch)
tree0c7a669115e55136a8c82c6d0863a24c9ccb86fc /actionpack/lib
parent9cff2484695243248abcaa9ec1c5b246f1c28209 (diff)
parente26d11c876d11bae09b95df941d14e21ac93e2f0 (diff)
downloadrails-7645a5f85d7fc88b5f05f7fe4b73b743078bb069.tar.gz
rails-7645a5f85d7fc88b5f05f7fe4b73b743078bb069.tar.bz2
rails-7645a5f85d7fc88b5f05f7fe4b73b743078bb069.zip
Merge pull request #20877 from sikachu/rename-ac-test_response
Change AC::TestResponse to AD::TestResponse
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.