diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-12-21 23:13:53 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2016-12-21 23:13:53 +0100 |
commit | a196493a7a43ae45c4f6164b63513e670906acba (patch) | |
tree | e2c5d6a0603fae312c8d32e222c84517b7848f3d | |
parent | 42e9448adef2eb9b14616f71472ecae9cd267a84 (diff) | |
download | mitmproxy-a196493a7a43ae45c4f6164b63513e670906acba.tar.gz mitmproxy-a196493a7a43ae45c4f6164b63513e670906acba.tar.bz2 mitmproxy-a196493a7a43ae45c4f6164b63513e670906acba.zip |
remove output of webmaster during tests
-rw-r--r-- | test/mitmproxy/test_web_app.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/mitmproxy/test_web_app.py b/test/mitmproxy/test_web_app.py index 6cf6ce26..8c15968b 100644 --- a/test/mitmproxy/test_web_app.py +++ b/test/mitmproxy/test_web_app.py @@ -20,6 +20,7 @@ class TestApp(tornado.testing.AsyncHTTPTestCase): def get_app(self): o = options.Options() m = webmaster.WebMaster(o, proxy.DummyServer()) + m.addons.remove(m.addons.get('termlog')) f = tflow.tflow(resp=True) f.id = "42" m.view.add(f) |