diff options
author | Prem Sichanugrist <s@sikac.hu> | 2015-07-14 09:27:42 -0400 |
---|---|---|
committer | Prem Sichanugrist <s@sikac.hu> | 2015-07-14 09:27:42 -0400 |
commit | e26d11c876d11bae09b95df941d14e21ac93e2f0 (patch) | |
tree | a4b294c64f5e74799261cda35c47556a4060209e /actionpack/lib/action_controller | |
parent | 368b9938ec9d8fbb8146e65c1edf744d32d207c9 (diff) | |
download | rails-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/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/test_case.rb | 2 |
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. |