aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/http1/test_protocol.py
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/http1/test_protocol.py
parenta837230320378d629ba9f25960b1dfd25c892ad9 (diff)
downloadmitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.tar.gz
mitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.tar.bz2
mitmproxy-0be84fd6b96c170db6020b5aed1e962d64ffedda.zip
fix tutils imports
Diffstat (limited to 'test/http/http1/test_protocol.py')
-rw-r--r--test/http/http1/test_protocol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/http/http1/test_protocol.py b/test/http/http1/test_protocol.py
index 05bad1af..e3c3ff43 100644
--- a/test/http/http1/test_protocol.py
+++ b/test/http/http1/test_protocol.py
@@ -2,9 +2,9 @@ import cStringIO
import textwrap
import binascii
-from netlib import http, odict, tcp
+from netlib import http, odict, tcp, tutils
from netlib.http.http1 import HTTP1Protocol
-from ... import tutils, tservers
+from ... import tservers
def mock_protocol(data='', chunked=False):