Tests: removed test_http_header_transfer_encoding_chunked.

This commit is contained in:
Andrey Zelenkov 2019-02-20 20:24:05 +03:00
parent b2ca342902
commit 09fb847cc7

View file

@ -145,23 +145,6 @@ Connection: close
self.assertEqual(resp['status'], 400, 'field trailing htab')
@unittest.expectedFailure
def test_http_header_transfer_encoding_chunked(self):
self.load('empty')
resp = self.http(b"""GET / HTTP/1.1
Host: localhost
Transfer-Encoding: chunked
Connection: close
a
0123456789
0
""", raw=True)
self.assertEqual(resp['status'], 200, 'transfer encoding chunked')
def test_http_header_content_length_big(self):
self.load('empty')