From ee52044a278885bd9455dd59b1e16c5d5e2d68ce Mon Sep 17 00:00:00 2001 From: James Aylett Date: Sat, 1 Sep 2018 14:14:18 +0100 Subject: [PATCH] Refs #16470 -- Fixed typo in a FileResponse test. --- tests/responses/test_fileresponse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/responses/test_fileresponse.py b/tests/responses/test_fileresponse.py index d6e6535b92..5896373d4d 100644 --- a/tests/responses/test_fileresponse.py +++ b/tests/responses/test_fileresponse.py @@ -34,7 +34,7 @@ class FileResponseTests(SimpleTestCase): response = FileResponse(os.fdopen(pipe_for_read, mode='rb')) self.assertEqual(list(response), [b'binary content']) response.close() - self.assertFalse(response.has_header('Ĉontent-Length')) + self.assertFalse(response.has_header('Content-Length')) def test_file_from_disk_as_attachment(self): response = FileResponse(open(__file__, 'rb'), as_attachment=True)