diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-08-28 17:35:22 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-08-28 17:35:22 +0200 |
commit | dd317aa5d20b3c5205a93a6cd977e8bed0154418 (patch) | |
tree | 08b61dcc667433d23b79a70df03f609dfe3754e1 /test/test_pathoc.py | |
parent | c428578c836e44d328c5d5eacb795c82fc2360cb (diff) | |
download | mitmproxy-dd317aa5d20b3c5205a93a6cd977e8bed0154418.tar.gz mitmproxy-dd317aa5d20b3c5205a93a6cd977e8bed0154418.tar.bz2 mitmproxy-dd317aa5d20b3c5205a93a6cd977e8bed0154418.zip |
fix alpn
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 54590174..ec68424a 100644 --- a/test/test_pathoc.py +++ b/test/test_pathoc.py @@ -290,7 +290,7 @@ class TestDaemonHTTP2(_TestDaemon): c.connect() _, kwargs = c.convert_to_ssl.call_args - assert set(kwargs['alpn_protos']) == set([b'http1.1', b'h2']) + assert set(kwargs['alpn_protos']) == set([b'http/1.1', b'h2']) def test_request(self): c = pathoc.Pathoc( |