Fix loglevel in subactor test; actually pass the level XD

sigintsaviour_citesthackin
Tyler Goodlet 2022-07-11 08:26:19 -04:00
parent 7c25aa176f
commit e1caeeb8de
1 changed files with 1 additions and 1 deletions

View File

@ -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,
)