Skip to content

Commit b710c64

Browse files
committed
fixup
1 parent 3d04845 commit b710c64

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/v3/test_group.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ async def test_asyncgroup_update_attributes(store: Store, zarr_format: ZarrForma
685685
@pytest.mark.parametrize("store", ("local",), indirect=["store"])
686686
@pytest.mark.parametrize("zarr_format", (2, 3))
687687
async def test_serializable_async_group(store: LocalStore, zarr_format: ZarrFormat) -> None:
688-
expected = await AsyncGroup.create(
688+
expected = await AsyncGroup.from_store(
689689
store=store, attributes={"foo": 999}, zarr_format=zarr_format
690690
)
691691
p = pickle.dumps(expected)
@@ -783,8 +783,11 @@ async def test_require_array(store: Store, zarr_format: ZarrFormat) -> None:
783783
@pytest.mark.parametrize("store", ("local",), indirect=["store"])
784784
@pytest.mark.parametrize("zarr_format", (2, 3))
785785
def test_serializable_sync_group(store: LocalStore, zarr_format: ZarrFormat) -> None:
786-
expected = Group.create(store=store, attributes={"foo": 999}, zarr_format=zarr_format)
786+
expected = Group.from_store(store=store, attributes={"foo": 999}, zarr_format=zarr_format)
787787
p = pickle.dumps(expected)
788788
actual = pickle.loads(p)
789789

790790
assert actual == expected
791+
792+
793+
def test_group_create_v2_compatibility(): ...

0 commit comments

Comments
 (0)