summaryrefslogtreecommitdiff
path: root/tests/handlers
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-04 08:08:27 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-07 20:37:05 +0100
commit7119f40c9881666b6f9b5cf7df09ee1d21cc8344 (patch)
treefa50869f5614295f462d9bf77fec59365c621609 /tests/handlers
parent9c19aff7c7561e3a82978a272ecdaad40dda5c00 (diff)
downloaddjango-7119f40c9881666b6f9b5cf7df09ee1d21cc8344.tar.gz
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Diffstat (limited to 'tests/handlers')
-rw-r--r--tests/handlers/tests.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/tests/handlers/tests.py b/tests/handlers/tests.py
index c987b1d472..1e2da4672b 100644
--- a/tests/handlers/tests.py
+++ b/tests/handlers/tests.py
@@ -44,11 +44,14 @@ class HandlerTests(SimpleTestCase):
b"want=caf%C3%A9", # This is the proper way to encode 'café'
b"want=caf\xc3\xa9", # UA forgot to quote bytes
b"want=caf%E9", # UA quoted, but not in UTF-8
- b"want=caf\xe9", # UA forgot to convert Latin-1 to UTF-8 and to quote (typical of MSIE)
+ # UA forgot to convert Latin-1 to UTF-8 and to quote (typical of
+ # MSIE).
+ b"want=caf\xe9",
]
got = []
for raw_query_string in raw_query_strings:
- # Simulate http.server.BaseHTTPRequestHandler.parse_request handling of raw request
+ # Simulate http.server.BaseHTTPRequestHandler.parse_request
+ # handling of raw request.
environ["QUERY_STRING"] = str(raw_query_string, "iso-8859-1")
request = WSGIRequest(environ)
got.append(request.GET["want"])
@@ -219,7 +222,10 @@ class HandlerRequestTests(SimpleTestCase):
self.client.get("/")
def test_no_response(self):
- msg = "The view %s didn't return an HttpResponse object. It returned None instead."
+ msg = (
+ "The view %s didn't return an HttpResponse object. It returned None "
+ "instead."
+ )
tests = (
("/no_response_fbv/", "handlers.views.no_response"),
("/no_response_cbv/", "handlers.views.NoResponse.__call__"),