aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/builtins/test_stickyauth.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/mitmproxy/builtins/test_stickyauth.py')
-rw-r--r--test/mitmproxy/builtins/test_stickyauth.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mitmproxy/builtins/test_stickyauth.py b/test/mitmproxy/builtins/test_stickyauth.py
index 3331a82e..22523548 100644
--- a/test/mitmproxy/builtins/test_stickyauth.py
+++ b/test/mitmproxy/builtins/test_stickyauth.py
@@ -1,6 +1,6 @@
from .. import tutils, mastertest
from mitmproxy.builtins import stickyauth
-from mitmproxy.flow import master
+from mitmproxy import master
from mitmproxy import options
from mitmproxy import proxy
@@ -8,7 +8,7 @@ from mitmproxy import proxy
class TestStickyAuth(mastertest.MasterTest):
def test_simple(self):
o = options.Options(stickyauth = ".*")
- m = master.FlowMaster(o, proxy.DummyServer())
+ m = master.Master(o, proxy.DummyServer())
sa = stickyauth.StickyAuth()
m.addons.add(sa)