aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authormisfo <tedwardo2@gmail.com>2011-01-29 16:03:40 -0600
committermisfo <tedwardo2@gmail.com>2011-01-29 16:03:40 -0600
commitef48408a7bed075089999f588250f9710bca8f40 (patch)
tree718fc9a157f8ca36aa42d5e8a4bea3e8960d4d8c /actionpack/lib
parent5e35ceee7dbded02d33dd44534d7e6627b240010 (diff)
downloadrails-ef48408a7bed075089999f588250f9710bca8f40.tar.gz
rails-ef48408a7bed075089999f588250f9710bca8f40.tar.bz2
rails-ef48408a7bed075089999f588250f9710bca8f40.zip
corrected the location of status code symbols
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/testing/assertions/response.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/response.rb b/actionpack/lib/action_dispatch/testing/assertions/response.rb
index 1558c3ae05..77a15f3e97 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/response.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/response.rb
@@ -20,7 +20,7 @@ module ActionDispatch
#
# You can also pass an explicit status number like <tt>assert_response(501)</tt>
# or its symbolic equivalent <tt>assert_response(:not_implemented)</tt>.
- # See ActionDispatch::StatusCodes for a full list.
+ # See Rack::Utils::SYMBOL_TO_STATUS_CODE for a full list.
#
# ==== Examples
#