aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2017-01-25 18:18:18 +0100
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2017-01-25 18:18:18 +0100
commit5549757268aad564316a279dedacb325e2660cf2 (patch)
treecb595fc3694a1de57437ca3ee70e64c6c4bd3e53 /test
parent3028e06fd2b2c9d95c49ca790dc79bab4fc81dae (diff)
downloadmitmproxy-5549757268aad564316a279dedacb325e2660cf2.tar.gz
mitmproxy-5549757268aad564316a279dedacb325e2660cf2.tar.bz2
mitmproxy-5549757268aad564316a279dedacb325e2660cf2.zip
fix alpn requirement in web tests
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/test_web_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/test_web_app.py b/test/mitmproxy/test_web_app.py
index 59d92c0f..00dc2c7c 100644
--- a/test/mitmproxy/test_web_app.py
+++ b/test/mitmproxy/test_web_app.py
@@ -19,7 +19,7 @@ def json(resp: httpclient.HTTPResponse):
class TestApp(tornado.testing.AsyncHTTPTestCase):
def get_app(self):
- o = options.Options()
+ o = options.Options(http2=False)
m = webmaster.WebMaster(o, proxy.DummyServer(), with_termlog=False)
f = tflow.tflow(resp=True)
f.id = "42"