From 6ec0ff35964c7805712d978625949f72ff5a63bc Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Wed, 7 Oct 2020 23:18:43 +0100 Subject: Tests: minor fixes. --- test/test_http_header.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/test_http_header.py') diff --git a/test/test_http_header.py b/test/test_http_header.py index 8c1e211b..8381a0d9 100644 --- a/test/test_http_header.py +++ b/test/test_http_header.py @@ -108,7 +108,7 @@ class TestHTTPHeader(TestApplicationPython): resp = self.get( headers={ 'Host': 'localhost', - 'Custom-Header': '(),/:;<=>?@[\]{}\t !#$%&\'*+-.^_`|~', + 'Custom-Header': r'(),/:;<=>?@[\]{}\t !#$%&\'*+-.^_`|~', 'Connection': 'close', } ) @@ -116,7 +116,7 @@ class TestHTTPHeader(TestApplicationPython): assert resp['status'] == 200, 'value chars status' assert ( resp['headers']['Custom-Header'] - == '(),/:;<=>?@[\]{}\t !#$%&\'*+-.^_`|~' + == r'(),/:;<=>?@[\]{}\t !#$%&\'*+-.^_`|~' ), 'value chars custom header' def test_http_header_value_chars_edge(self): -- cgit