aboutsummaryrefslogtreecommitdiffstats
path: root/test/pathod/protocols/test_http2.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2017-02-14 23:41:44 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2017-02-14 23:47:33 +0100
commit4d973e82959f5aecab8313b43ce1ab484f21b536 (patch)
tree63439432d40bd5f0740000b71da0dc6df6053e3c /test/pathod/protocols/test_http2.py
parenta12c3d3f8ea255dd03bb7e993fa85eb00f47ab29 (diff)
downloadmitmproxy-4d973e82959f5aecab8313b43ce1ab484f21b536.tar.gz
mitmproxy-4d973e82959f5aecab8313b43ce1ab484f21b536.tar.bz2
mitmproxy-4d973e82959f5aecab8313b43ce1ab484f21b536.zip
fix imports
Diffstat (limited to 'test/pathod/protocols/test_http2.py')
-rw-r--r--test/pathod/protocols/test_http2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/pathod/protocols/test_http2.py b/test/pathod/protocols/test_http2.py
index 5bb31031..1c074197 100644
--- a/test/pathod/protocols/test_http2.py
+++ b/test/pathod/protocols/test_http2.py
@@ -7,11 +7,11 @@ from mitmproxy.net import tcp, http
from mitmproxy.net.http import http2
from mitmproxy import exceptions
-from ..mitmproxy.net import tservers as net_tservers
+from ...mitmproxy.net import tservers as net_tservers
from pathod.protocols.http2 import HTTP2StateProtocol, TCPHandler
-from ..conftest import requires_alpn
+from ...conftest import requires_alpn
class TestTCPHandlerWrapper: