From 4d808757a633866ad611bb2c1df67d5635d5c831 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 9 Oct 2022 18:22:55 -0400 Subject: [PATCH] Fix start method name in logging propagation test --- tests/test_spawning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_spawning.py b/tests/test_spawning.py index 3e5ab1b..17798c0 100644 --- a/tests/test_spawning.py +++ b/tests/test_spawning.py @@ -142,7 +142,7 @@ def test_loglevel_propagated_to_subactor( capfd, arb_addr, ): - if start_method == 'forkserver': + if start_method == 'mp_forkserver': pytest.skip( "a bug with `capfd` seems to make forkserver capture not work?")