aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/addons/test_readfile.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/mitmproxy/addons/test_readfile.py b/test/mitmproxy/addons/test_readfile.py
index 62f4d917..3d28d8b7 100644
--- a/test/mitmproxy/addons/test_readfile.py
+++ b/test/mitmproxy/addons/test_readfile.py
@@ -1,6 +1,5 @@
import asyncio
import io
-from unittest import mock
import pytest
import asynctest
@@ -110,8 +109,7 @@ class TestReadFileStdin:
await rf.load_flows(stdin.buffer)
@pytest.mark.asyncio
- @mock.patch('mitmproxy.master.Master.load_flow')
- async def test_normal(self, load_flow, tmpdir, data):
+ async def test_normal(self, tmpdir, data):
rf = readfile.ReadFileStdin()
with taddons.context(rf) as tctx:
tf = tmpdir.join("tfile")