diff options
author | lymanZerga11 <lymanZerga11@users.noreply.github.com> | 2017-02-12 23:36:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 23:36:26 +0800 |
commit | f5b30b8872dd9d1c187435cb6d167c6cfb90b226 (patch) | |
tree | 63d664a78329d822fc239d9fe83d1e8f9dd5253b | |
parent | df8a5aa9bea73472313a5c6785a5957ea6bbdcb6 (diff) | |
download | mitmproxy-f5b30b8872dd9d1c187435cb6d167c6cfb90b226.tar.gz mitmproxy-f5b30b8872dd9d1c187435cb6d167c6cfb90b226.tar.bz2 mitmproxy-f5b30b8872dd9d1c187435cb6d167c6cfb90b226.zip |
Update test_flowlist.py
-rw-r--r-- | test/mitmproxy/console/test_flowlist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mitmproxy/console/test_flowlist.py b/test/mitmproxy/console/test_flowlist.py index 4e05ca14..0f41fb42 100644 --- a/test/mitmproxy/console/test_flowlist.py +++ b/test/mitmproxy/console/test_flowlist.py @@ -2,7 +2,7 @@ import mitmproxy.tools.console.flowlist as flowlist from mitmproxy.tools import console from mitmproxy import proxy from mitmproxy import options -from .. import mastertest +from .. import tservers import pytest from unittest import mock @@ -15,7 +15,7 @@ def mock_add_log(message): raise ScriptError(message) -class TestFlowlist(mastertest.MasterTest): +class TestFlowlist(tservers.MasterTest): def mkmaster(self, **opts): if "verbosity" not in opts: opts["verbosity"] = 1 |