From f4116b3c833fa6468143f8f5e27c1ba791572f14 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Sun, 2 Sep 2018 09:48:56 +0300 Subject: [PATCH] Update test_http_parser.py --- tests/test_http_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_http_parser.py b/tests/test_http_parser.py index 47d0ec87e5d..ebd97c0efb3 100644 --- a/tests/test_http_parser.py +++ b/tests/test_http_parser.py @@ -82,7 +82,7 @@ def test_parse_headers(parser): msg = messages[0][0] assert list(msg.headers.items()) == [('test', 'line continue'), - ('test2', 'data')] + ('test2', 'data')] assert msg.raw_headers == ((b'test', b'line continue'), (b'test2', b'data')) assert not msg.should_close