From b021188e95380c77248d38be4aa74c1877e51683 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Mon, 6 Aug 2018 19:16:45 +0300 Subject: Python: decoding unicode strings as Latin1. According to PEP 3333, header names and values should be decoded as Latin1. --- test/test_http_header.py | 1 - 1 file changed, 1 deletion(-) (limited to 'test') diff --git a/test/test_http_header.py b/test/test_http_header.py index b787b382..aadb6092 100644 --- a/test/test_http_header.py +++ b/test/test_http_header.py @@ -83,7 +83,6 @@ class TestUnitHTTPHeader(unit.TestUnitApplicationPython): self.assertEqual(resp['headers']['Custom-Header'], '(),/:;<=>?@[\]{}\t !#$%&\'*+-.^_`|~', 'value chars custom header') - @unittest.expectedFailure def test_http_header_value_chars_edge(self): self.load('custom_header') -- cgit