diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-02-08 15:10:16 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2016-02-08 15:10:16 +0100 |
commit | 12b0a72db8f275baf6634f48f630609ce48b8cec (patch) | |
tree | e7c55cd68dd15a404599174379e3a4ed43415df1 /test/test_pathoc.py | |
parent | 12d9594e85160ae2b445e6d7d33f762f2faf1d11 (diff) | |
download | mitmproxy-12b0a72db8f275baf6634f48f630609ce48b8cec.tar.gz mitmproxy-12b0a72db8f275baf6634f48f630609ce48b8cec.tar.bz2 mitmproxy-12b0a72db8f275baf6634f48f630609ce48b8cec.zip |
fix http version string
Diffstat (limited to 'test/test_pathoc.py')
-rw-r--r-- | test/test_pathoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_pathoc.py b/test/test_pathoc.py index eb5d368d..62696a64 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) |