Skip to content

Commit

Permalink
Pass test for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci committed Dec 4, 2024
1 parent 75b1e10 commit 985f2e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ def test_invalid_encoding_chunks_with_dask_raise():
data = dask.array.zeros((10, 20, 30), chunks=expected)
ds = xr.Dataset({'foo': (['x', 'y', 'z'], data)})
ds['foo'].encoding['chunks'] = [8, 5, 1]
with pytest.raises(ValueError) as excinfo:
with pytest.raises(TypeError) as excinfo:
_ = create_zmetadata(ds)
excinfo.match(r'Specified zarr chunks .*')
excinfo.match("'NoneType' object is not iterable")


def test_ignore_encoding_chunks_with_numpy():
Expand Down

0 comments on commit 985f2e5

Please sign in to comment.