aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathod/test_pathod.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2017-07-25 10:03:19 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2017-07-25 10:56:24 +0200
commit4855659eebfe7b2ea965daced88879277b75439c (patch)
tree5875405970865b00d50ed3bcd1f5ef10e3b8d7de /test/pathod/test_pathod.py
parenta2c2b1a9cbac8d3c6cf82dadd9047adedd97fe84 (diff)
downloadmitmproxy-4855659eebfe7b2ea965daced88879277b75439c.tar.gz
mitmproxy-4855659eebfe7b2ea965daced88879277b75439c.tar.bz2
mitmproxy-4855659eebfe7b2ea965daced88879277b75439c.zip
nuke old openssl
Diffstat (limited to 'test/pathod/test_pathod.py')
-rw-r--r--test/pathod/test_pathod.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/pathod/test_pathod.py b/test/pathod/test_pathod.py
index 88480a59..5f191c0d 100644
--- a/test/pathod/test_pathod.py
+++ b/test/pathod/test_pathod.py
@@ -8,7 +8,6 @@ from mitmproxy import exceptions
from mitmproxy.test import tutils
from . import tservers
-from ..conftest import requires_alpn
class TestPathod:
@@ -257,11 +256,6 @@ class TestHTTP2(tservers.DaemonTests):
ssl = True
nohang = True
- @requires_alpn
def test_http2(self):
r, _ = self.pathoc(["GET:/"], ssl=True, use_http2=True)
assert r[0].status_code == 800
-
- def test_no_http2(self, disable_alpn):
- with pytest.raises(NotImplementedError):
- r, _ = self.pathoc(["GET:/"], ssl=True, use_http2=True)