From 64909e676e34ba9ea0da2d2d74599e0f47ab16fc Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 11 Jul 2022 08:26:19 -0400 Subject: [PATCH] Fix loglevel in subactor test; actually pass the level XD --- 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 cdeacba..e624da3 100644 --- a/tests/test_spawning.py +++ b/tests/test_spawning.py @@ -150,13 +150,13 @@ def test_loglevel_propagated_to_subactor( async def main(): async with tractor.open_nursery( name='arbiter', - loglevel=level, start_method=start_method, arbiter_addr=arb_addr, ) as tn: await tn.run_in_actor( check_loglevel, + loglevel=level, level=level, )