summaryrefslogtreecommitdiff
path: root/tests/auth_tests
diff options
context:
space:
mode:
authorLuoxzhg <luoxzhg@users.noreply.github.com>2017-09-09 21:41:45 +0800
committerTim Graham <timograham@gmail.com>2017-09-09 11:21:15 -0400
commitffbee67f8e17e1cfffcaa0116c170141a7363dda (patch)
tree5ac00f7e5def84f4a636672be4c1201ffc06d713 /tests/auth_tests
parent8b5a29800ce0bc7272917de99b46f6f6dcdb7d74 (diff)
Fixed some comments referring to a nonexistent TestClient class.
Diffstat (limited to 'tests/auth_tests')
-rw-r--r--tests/auth_tests/test_views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auth_tests/test_views.py b/tests/auth_tests/test_views.py
index 4e704cb76a..6549c64034 100644
--- a/tests/auth_tests/test_views.py
+++ b/tests/auth_tests/test_views.py
@@ -641,7 +641,7 @@ class LoginTest(AuthViewsTestCase):
Makes sure that a login rotates the currently-used CSRF token.
"""
# Do a GET to establish a CSRF token
- # TestClient isn't used here as we're testing middleware, essentially.
+ # The test client isn't used here as it's a test for middleware.
req = HttpRequest()
CsrfViewMiddleware().process_view(req, LoginView.as_view(), (), {})
# get_token() triggers CSRF token inclusion in the response