aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/test_semantics.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/http/test_semantics.py')
-rw-r--r--test/http/test_semantics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http/test_semantics.py b/test/http/test_semantics.py
index 6dcbbe07..44d3c85e 100644
--- a/test/http/test_semantics.py
+++ b/test/http/test_semantics.py
@@ -475,7 +475,7 @@ class TestHeaders(object):
def test_str(self):
headers = semantics.Headers(Host="example.com")
- assert str(headers) == "Host: example.com\r\n"
+ assert bytes(headers) == "Host: example.com\r\n"
headers = semantics.Headers([
["Host", "example.com"],