Skip to content

Commit 4db0587

Browse files
tuple → await tuple
Fixes CI error: FAILED tests/test_group.py::test_create_hierarchy_existing_nodes[zarr2-async-array-memory] - TypeError: 'async_generator' object is not iterable
1 parent f8cfddb commit 4db0587

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1640,7 +1640,7 @@ async def test_create_hierarchy_existing_nodes(
16401640
)
16411641
elif impl == "async":
16421642
with pytest.raises(err_cls, match=re.escape(msg)):
1643-
tuple(
1643+
await tuple(
16441644
x
16451645
async for x in create_hierarchy(
16461646
store=store, nodes={"node": new_metadata}, overwrite=False

0 commit comments

Comments
 (0)