aboutsummaryrefslogtreecommitdiffstats
path: root/test/websockets/test_websockets.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-01-24 23:24:59 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-01-25 09:20:44 +0100
commit1b487539b1f3ea183eaed26ae756d0cc7d3ec3ea (patch)
treece105012045a86019879f605ece2f12e5e9ecd0b /test/websockets/test_websockets.py
parent0ca0469d6e87420f88fe4089338e8a0ba04e4428 (diff)
downloadmitmproxy-1b487539b1f3ea183eaed26ae756d0cc7d3ec3ea.tar.gz
mitmproxy-1b487539b1f3ea183eaed26ae756d0cc7d3ec3ea.tar.bz2
mitmproxy-1b487539b1f3ea183eaed26ae756d0cc7d3ec3ea.zip
move tservers to netlib module
Diffstat (limited to 'test/websockets/test_websockets.py')
-rw-r--r--test/websockets/test_websockets.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/websockets/test_websockets.py b/test/websockets/test_websockets.py
index 9a1e5d3d..d53f0d83 100644
--- a/test/websockets/test_websockets.py
+++ b/test/websockets/test_websockets.py
@@ -2,12 +2,11 @@ import os
from netlib.http.http1 import read_response, read_request
-from netlib import tcp, tutils, websockets, http
+from netlib import tcp, websockets, http, tutils, tservers
from netlib.http import status_codes
from netlib.tutils import treq
from netlib.exceptions import *
-from .. import tservers
class WebSocketsEchoHandler(tcp.BaseHandler):