aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/http2
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-01 14:49:15 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2015-08-01 14:49:15 +0200
commit0be84fd6b96c170db6020b5aed1e962d64ffedda (patch)
tree58fca864d8fc47b2c615f483801374841401928a /test/http/http2
parenta837230320378d629ba9f25960b1dfd25c892ad9 (diff)
downloadmitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.tar.gz
mitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.tar.bz2
mitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.zip
fix tutils imports
Diffstat (limited to 'test/http/http2')
-rw-r--r--test/http/http2/test_frames.py4
-rw-r--r--test/http/http2/test_protocol.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/http/http2/test_frames.py b/test/http/http2/test_frames.py
index ee2edc39..077f5bc2 100644
--- a/test/http/http2/test_frames.py
+++ b/test/http/http2/test_frames.py
@@ -1,7 +1,7 @@
import cStringIO
-from test import tutils
from nose.tools import assert_equal
-from netlib import tcp
+
+from netlib import tcp, tutils
from netlib.http.http2.frame import *
diff --git a/test/http/http2/test_protocol.py b/test/http/http2/test_protocol.py
index b2d414d1..8a27bbb1 100644
--- a/test/http/http2/test_protocol.py
+++ b/test/http/http2/test_protocol.py
@@ -1,9 +1,9 @@
import OpenSSL
-from netlib import tcp, odict, http
+from netlib import tcp, odict, http, tutils
from netlib.http import http2
from netlib.http.http2.frame import *
-from ... import tutils, tservers
+from ... import tservers
class EchoHandler(tcp.BaseHandler):