From 891edbab5fad146c12c16c1f0c7c41e22a85201d Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 25 Jul 2020 18:18:34 -0400 Subject: [PATCH] Run the trio spawner in nested tests --- tests/test_cancellation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cancellation.py b/tests/test_cancellation.py index 5a471f7..2c4c6fb 100644 --- a/tests/test_cancellation.py +++ b/tests/test_cancellation.py @@ -299,7 +299,7 @@ async def test_nested_multierrors(loglevel, start_method): This test goes only 2 nurseries deep but we should eventually have tests for arbitrary n-depth actor trees. """ - if start_method == 'trio_run_in_process': + if start_method == 'trio': depth = 3 subactor_breadth = 2 else: