Skip to content

Commit

Permalink
more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Sep 17, 2024
1 parent 49a5eb5 commit 681d945
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/zarr/testing/strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,14 @@ def arrays(
array_path,
shape=nparray.shape,
chunks=chunks,
dtype=nparray.dtype.str,
dtype=nparray.dtype,
attributes=attributes,
# compressor=compressor, # TODO: FIXME
fill_value=fill_value,
)

assert isinstance(a, Array)
assert isinstance(root[array_path], Array)
assert nparray.shape == a.shape
assert chunks == a.chunks
assert array_path == a.path, (path, name, array_path, a.name, a.path)
Expand Down

0 comments on commit 681d945

Please sign in to comment.