diff options
author | Maximilian Hils <git@maximilianhils.com> | 2017-07-25 21:57:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-25 21:57:54 +0200 |
commit | d409a6c09a873c8131c5e6938aea496904f324c3 (patch) | |
tree | 99d7c442043e1cf4105a8b95f2494ed81a07b53c /test/pathod/protocols/test_http2.py | |
parent | 3262b6e70510e3fd78c512ee79fcb8eb35d371ba (diff) | |
parent | 4855659eebfe7b2ea965daced88879277b75439c (diff) | |
download | mitmproxy-d409a6c09a873c8131c5e6938aea496904f324c3.tar.gz mitmproxy-d409a6c09a873c8131c5e6938aea496904f324c3.tar.bz2 mitmproxy-d409a6c09a873c8131c5e6938aea496904f324c3.zip |
Merge pull request #2469 from Kriechi/nuke-old-openssl
nuke old openssl
Diffstat (limited to 'test/pathod/protocols/test_http2.py')
-rw-r--r-- | test/pathod/protocols/test_http2.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/pathod/protocols/test_http2.py b/test/pathod/protocols/test_http2.py index c16a6d40..b1eebc73 100644 --- a/test/pathod/protocols/test_http2.py +++ b/test/pathod/protocols/test_http2.py @@ -11,8 +11,6 @@ from ...mitmproxy.net import tservers as net_tservers from pathod.protocols.http2 import HTTP2StateProtocol, TCPHandler -from ...conftest import requires_alpn - class TestTCPHandlerWrapper: def test_wrapped(self): @@ -68,7 +66,6 @@ class TestProtocol: assert mock_server_method.called -@requires_alpn class TestCheckALPNMatch(net_tservers.ServerTestBase): handler = EchoHandler ssl = dict( @@ -83,7 +80,6 @@ class TestCheckALPNMatch(net_tservers.ServerTestBase): assert protocol.check_alpn() -@requires_alpn class TestCheckALPNMismatch(net_tservers.ServerTestBase): handler = EchoHandler ssl = dict( |