diff options
Diffstat (limited to 'test/mitmproxy/mastertest.py')
-rw-r--r-- | test/mitmproxy/mastertest.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/mitmproxy/mastertest.py b/test/mitmproxy/mastertest.py index 5605b1a6..ae11e577 100644 --- a/test/mitmproxy/mastertest.py +++ b/test/mitmproxy/mastertest.py @@ -50,8 +50,7 @@ class RecordingMaster(master.FlowMaster): @contextlib.contextmanager def mockctx(): - state = flow.State() o = options.Options(refresh_server_playback = True, keepserving=False) - m = RecordingMaster(o, proxy.DummyServer(o), state) + m = RecordingMaster(o, proxy.DummyServer(o)) with m.handlecontext(): yield |