From 29f4189ff6f62023137683a9b1ce68321f92102b Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Mon, 30 Mar 2026 10:37:53 +0200 Subject: [PATCH] Fix typos --- docs/release-notes.md | 2 +- tests/test_array.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/release-notes.md b/docs/release-notes.md index b974ae10c7..e79d359e3f 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -461,7 +461,7 @@ - Test that a `ValueError` is raised for invalid byte range syntax in `StoreTests`. ([#2693](https://github.com/zarr-developers/zarr-python/issues/2693)) - Separate instantiating and opening a store in `StoreTests`. ([#2693](https://github.com/zarr-developers/zarr-python/issues/2693)) - Add a test for using Stores as a context managers in `StoreTests`. ([#2693](https://github.com/zarr-developers/zarr-python/issues/2693)) -- Implemented `LogingStore.open()`. ([#2693](https://github.com/zarr-developers/zarr-python/issues/2693)) +- Implemented `LoggingStore.open()`. ([#2693](https://github.com/zarr-developers/zarr-python/issues/2693)) - `LoggingStore` is now a generic class. ([#2693](https://github.com/zarr-developers/zarr-python/issues/2693)) - Change StoreTest's `test_store_repr`, `test_store_supports_writes`, `test_store_supports_partial_writes`, and `test_store_supports_listing` diff --git a/tests/test_array.py b/tests/test_array.py index bf6f651283..867bfb6cb2 100644 --- a/tests/test_array.py +++ b/tests/test_array.py @@ -209,19 +209,19 @@ def test_array_name_properties_with_group( @pytest.mark.filterwarnings("ignore::zarr.core.dtype.common.UnstableSpecificationWarning") @pytest.mark.parametrize("store", ["memory"], indirect=True) -@pytest.mark.parametrize("specifiy_fill_value", [True, False]) +@pytest.mark.parametrize("specify_fill_value", [True, False]) @pytest.mark.parametrize( "zdtype", zdtype_examples, ids=tuple(str(type(v)) for v in zdtype_examples) ) def test_array_fill_value_default( - store: MemoryStore, specifiy_fill_value: bool, zdtype: ZDType[Any, Any] + store: MemoryStore, specify_fill_value: bool, zdtype: ZDType[Any, Any] ) -> None: """ Test that creating an array with the fill_value parameter set to None, or unspecified, results in the expected fill_value attribute of the array, i.e. the default value of the dtype """ shape = (10,) - if specifiy_fill_value: + if specify_fill_value: arr = zarr.create_array( store=store, shape=shape,