Kaydet (Commit) ffbee67f authored tarafından Luoxzhg's avatar Luoxzhg Kaydeden (comit) Tim Graham

Fixed some comments referring to a nonexistent TestClient class.

üst 8b5a2980
...@@ -245,9 +245,9 @@ class SimpleTestCase(unittest.TestCase): ...@@ -245,9 +245,9 @@ class SimpleTestCase(unittest.TestCase):
Assert that a response redirected to a specific URL and that the Assert that a response redirected to a specific URL and that the
redirect URL can be loaded. redirect URL can be loaded.
Won't work for external links since it uses TestClient to do a request Won't work for external links since it uses the test client to do a
(use fetch_redirect_response=False to check such links without fetching request (use fetch_redirect_response=False to check such links without
them). fetching them).
""" """
if msg_prefix: if msg_prefix:
msg_prefix += ": " msg_prefix += ": "
......
...@@ -641,7 +641,7 @@ class LoginTest(AuthViewsTestCase): ...@@ -641,7 +641,7 @@ class LoginTest(AuthViewsTestCase):
Makes sure that a login rotates the currently-used CSRF token. Makes sure that a login rotates the currently-used CSRF token.
""" """
# Do a GET to establish a 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() req = HttpRequest()
CsrfViewMiddleware().process_view(req, LoginView.as_view(), (), {}) CsrfViewMiddleware().process_view(req, LoginView.as_view(), (), {})
# get_token() triggers CSRF token inclusion in the response # get_token() triggers CSRF token inclusion in the response
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment