8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d87d49 commit 9341f6eCopy full SHA for 9341f6e
tests/test_group.py
@@ -1641,10 +1641,12 @@ async def test_create_hierarchy_existing_nodes(
1641
elif impl == "async":
1642
with pytest.raises(err_cls, match=re.escape(msg)):
1643
tuple(
1644
- x
1645
- async for x in create_hierarchy(
1646
- store=store, nodes={"node": new_metadata}, overwrite=False
1647
- )
+ [
+ x
+ async for x in create_hierarchy(
+ store=store, nodes={"node": new_metadata}, overwrite=False
1648
+ )
1649
+ ]
1650
)
1651
else:
1652
raise ValueError(f"Invalid impl: {impl}")
0 commit comments