diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-02-20 20:24:05 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-02-20 20:24:05 +0300 |
commit | 09fb847cc731d133b2016ff6982ab95aa43794ca (patch) | |
tree | f9b027166a5be3904b474fefdc342a8662dc3982 | |
parent | b2ca342902ec84b4415982be08d89c8bfe0ed431 (diff) | |
download | unit-09fb847cc731d133b2016ff6982ab95aa43794ca.tar.gz unit-09fb847cc731d133b2016ff6982ab95aa43794ca.tar.bz2 |
Tests: removed test_http_header_transfer_encoding_chunked.
-rw-r--r-- | test/test_http_header.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/test_http_header.py b/test/test_http_header.py index 5a982217..0544f3b3 100644 --- a/test/test_http_header.py +++ b/test/test_http_header.py @@ -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') |