diff options
Diffstat (limited to 'test/http/http2/test_protocol.py')
-rw-r--r-- | test/http/http2/test_protocol.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http/http2/test_protocol.py b/test/http/http2/test_protocol.py index d3040266..0216128f 100644 --- a/test/http/http2/test_protocol.py +++ b/test/http/http2/test_protocol.py @@ -253,7 +253,7 @@ class TestReadResponse(tservers.ServerTestBase): resp = protocol.read_response() - assert resp.httpversion == "HTTP/2" + assert resp.httpversion == (2, 0) assert resp.status_code == "200" assert resp.msg == "" assert resp.headers.lst == [[':status', '200'], ['etag', 'foobar']] @@ -279,7 +279,7 @@ class TestReadEmptyResponse(tservers.ServerTestBase): resp = protocol.read_response() assert resp.stream_id - assert resp.httpversion == "HTTP/2" + assert resp.httpversion == (2, 0) assert resp.status_code == "200" assert resp.msg == "" assert resp.headers.lst == [[':status', '200'], ['etag', 'foobar']] |