aboutsummaryrefslogtreecommitdiffstats
path: root/test/mitmproxy/addons/test_check_ca.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/mitmproxy/addons/test_check_ca.py')
-rw-r--r--test/mitmproxy/addons/test_check_ca.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mitmproxy/addons/test_check_ca.py b/test/mitmproxy/addons/test_check_ca.py
index 5e820b6d..27e6f7e6 100644
--- a/test/mitmproxy/addons/test_check_ca.py
+++ b/test/mitmproxy/addons/test_check_ca.py
@@ -12,11 +12,11 @@ class TestCheckCA:
async def test_check_ca(self, expired):
msg = 'The mitmproxy certificate authority has expired!'
- with taddons.context() as tctx:
+ a = check_ca.CheckCA()
+ with taddons.context(a) as tctx:
tctx.master.server = mock.MagicMock()
tctx.master.server.config.certstore.default_ca.has_expired = mock.MagicMock(
return_value = expired
)
- a = check_ca.CheckCA()
tctx.configure(a)
assert await tctx.master.await_log(msg) == expired