Kaydet (Commit) e04230e2 authored tarafından Aymeric Augustin's avatar Aymeric Augustin

[py3] Ported django.http according to PEP 3333.

Perfomed some style cleanup while I was in the area.
üst 0df0cf70
This diff is collapsed.
......@@ -40,8 +40,8 @@ class WSGITest(TestCase):
response_data["headers"],
[('Content-Type', 'text/html; charset=utf-8')])
self.assertEqual(
six.text_type(response),
"Content-Type: text/html; charset=utf-8\n\nHello World!")
bytes(response),
b"Content-Type: text/html; charset=utf-8\r\n\r\nHello World!")
class GetInternalWSGIApplicationTest(unittest.TestCase):
......
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