From 9f757ffa63ddb98c2e93e34be10936f37c8f2ec2 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 11 Sep 2025 13:13:18 -0400 Subject: [PATCH] Woops, fix missing `assert` thanks to copilot --- tests/test_oob_cancellation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_oob_cancellation.py b/tests/test_oob_cancellation.py index ba4c801d..58d12d2b 100644 --- a/tests/test_oob_cancellation.py +++ b/tests/test_oob_cancellation.py @@ -206,7 +206,7 @@ def test_cancel_ctx_with_parent_side_entered_in_bg_task( with pytest.raises(tractor.ContextCancelled) as excinfo: trio.run(main) - 'root' in excinfo.value.canceller[0] + assert 'root' in excinfo.value.canceller[0] # def test_parent_actor_cancels_subactor_with_gt1_ctxs_open_to_it(