From 12b0a72db8f275baf6634f48f630609ce48b8cec Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 8 Feb 2016 15:10:16 +0100 Subject: [PATCH] fix http version string --- test/test_pathoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_pathoc.py b/test/test_pathoc.py index eb5d368de..62696a645 100644 --- a/test/test_pathoc.py +++ b/test/test_pathoc.py @@ -14,7 +14,7 @@ import tutils def test_response(): - r = http.Response("1.1", 200, "Message", {}, None, None) + r = http.Response("HTTP/1.1", 200, "Message", {}, None, None) assert repr(r)