aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/tools/web/test_static_viewer.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/mitmproxy/tools/web/test_static_viewer.py')
-rw-r--r--test/mitmproxy/tools/web/test_static_viewer.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/mitmproxy/tools/web/test_static_viewer.py b/test/mitmproxy/tools/web/test_static_viewer.py
index dfc45bc2..c044dee8 100644
--- a/test/mitmproxy/tools/web/test_static_viewer.py
+++ b/test/mitmproxy/tools/web/test_static_viewer.py
@@ -1,5 +1,6 @@
import json
from unittest import mock
+import pytest
from mitmproxy.test import taddons
from mitmproxy.test import tflow
@@ -57,7 +58,8 @@ def test_save_flows_content(ctx, tmpdir):
assert p.join('response/content/Auto.json').check(file=1)
-def test_static_viewer(tmpdir):
+@pytest.mark.asyncio
+async def test_static_viewer(tmpdir):
s = static_viewer.StaticViewer()
rf = readfile.ReadFile()
sa = save.Save()