Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
6 changes: 3 additions & 3 deletions tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading