diff --git a/src/zarr/testing/store.py b/src/zarr/testing/store.py index 8a9f27e4b8..ebd4b85c90 100644 --- a/src/zarr/testing/store.py +++ b/src/zarr/testing/store.py @@ -58,7 +58,7 @@ def test_store_eq(self, store: S, store_kwargs: dict[str, Any]) -> None: store2 = self.store_cls(**store_kwargs) assert store == store2 - def test_serizalizable_store(self, store: S) -> None: + def test_serializable_store(self, store: S) -> None: foo = pickle.dumps(store) assert pickle.loads(foo) == store