aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-08-23 20:15:42 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-09-03 11:50:37 +0200
commitea2a51d3be73ac132dc8a60f7794d3922d8190ff (patch)
tree95318f3dac6a765cf2c59a4e7e0705b51592688f /test
parent5dda9505b6f07422eb9a24590f30e9230a5453ef (diff)
downloadmitmproxy-ea2a51d3be73ac132dc8a60f7794d3922d8190ff.tar.gz
mitmproxy-ea2a51d3be73ac132dc8a60f7794d3922d8190ff.tar.bz2
mitmproxy-ea2a51d3be73ac132dc8a60f7794d3922d8190ff.zip
http2: fixes
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/protocol/test_http2.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/mitmproxy/protocol/test_http2.py b/test/mitmproxy/protocol/test_http2.py
index c2f96559..d5860518 100644
--- a/test/mitmproxy/protocol/test_http2.py
+++ b/test/mitmproxy/protocol/test_http2.py
@@ -33,6 +33,11 @@ requires_alpn = pytest.mark.skipif(
reason='requires OpenSSL with ALPN support')
+# inspect the log:
+# for msg in self.proxy.tmaster.tlog:
+# print(msg)
+
+
class _Http2ServerBase(netlib_tservers.ServerTestBase):
ssl = dict(alpn_select=b'h2')