From 5549757268aad564316a279dedacb325e2660cf2 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Wed, 25 Jan 2017 18:18:18 +0100 Subject: [PATCH] fix alpn requirement in web tests --- test/mitmproxy/test_web_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mitmproxy/test_web_app.py b/test/mitmproxy/test_web_app.py index 59d92c0f5..00dc2c7c3 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"