Another loosie in the trioisms suite

py313_support
Tyler Goodlet 2025-03-03 18:55:02 -05:00
parent 3d4aa22a79
commit dfaae2238d
1 changed files with 3 additions and 1 deletions

View File

@ -64,7 +64,9 @@ def test_stashed_child_nursery(use_start_soon):
async def main(): async def main():
async with ( async with (
trio.open_nursery() as pn, trio.open_nursery(
strict_exception_groups=False,
) as pn,
): ):
cn = await pn.start(mk_child_nursery) cn = await pn.start(mk_child_nursery)
assert cn assert cn