From 91dc1303f57ce154725360d374680bd563897cde Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Mon, 5 Feb 2018 15:39:23 +0300 Subject: [PATCH] Tests: added "Connection: close" header for default requests. --- test/unit.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/unit.py b/test/unit.py index c95a1251..bb09338c 100644 --- a/test/unit.py +++ b/test/unit.py @@ -151,7 +151,12 @@ class TestUnitHTTP(TestUnit): port = 7080 if 'port' not in kwargs else kwargs['port'] url = '/' if 'url' not in kwargs else kwargs['url'] http = 'HTTP/1.0' if 'http_10' in kwargs else 'HTTP/1.1' - headers = {'Host': 'localhost'} if 'headers' not in kwargs else kwargs['headers'] + + headers = ({ + 'Host': 'localhost', + 'Connection': 'close' + } if 'headers' not in kwargs else kwargs['headers']) + body = b'' if 'body' not in kwargs else kwargs['body'] crlf = '\r\n'