diff options
author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-01-25 15:22:36 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-01-25 15:22:36 +0100 |
commit | dc7d41e7a5097230ea3715c9844198b01f317b75 (patch) | |
tree | ce105012045a86019879f605ece2f12e5e9ecd0b /test/http/http2/test_protocol.py | |
parent | 0ca0469d6e87420f88fe4089338e8a0ba04e4428 (diff) | |
parent | 1b487539b1f3ea183eaed26ae756d0cc7d3ec3ea (diff) | |
download | mitmproxy-dc7d41e7a5097230ea3715c9844198b01f317b75.tar.gz mitmproxy-dc7d41e7a5097230ea3715c9844198b01f317b75.tar.bz2 mitmproxy-dc7d41e7a5097230ea3715c9844198b01f317b75.zip |
Merge pull request #115 from Kriechi/move-tservers
move tservers to netlib module
Diffstat (limited to 'test/http/http2/test_protocol.py')
-rw-r--r-- | test/http/http2/test_protocol.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/http/http2/test_protocol.py b/test/http/http2/test_protocol.py index 6bda96f5..0beec950 100644 --- a/test/http/http2/test_protocol.py +++ b/test/http/http2/test_protocol.py @@ -1,12 +1,11 @@ import OpenSSL import mock -from netlib import tcp, http, tutils +from netlib import tcp, http, tutils, tservers from netlib.exceptions import TcpDisconnect from netlib.http import Headers from netlib.http.http2.connections import HTTP2Protocol, TCPHandler from netlib.http.http2.frame import * -from ... import tservers class TestTCPHandlerWrapper: def test_wrapped(self): |