Skip to content

Commit

Permalink
Update xarray/tests/test_dask.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian authored Jun 13, 2024
1 parent c8a5194 commit 9e671de
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions xarray/tests/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,7 @@ def test_duplicate_dims(self):
arr = DataArray(data, dims=("x", "x"))
chunked_array = arr.chunk({"x": 2})
assert chunked_array.chunks == ((2, 2), (2, 2))
assert chunked_array.chunksizes == {"x": (2, 2)}

def test_stack(self):
data = da.random.normal(size=(2, 3, 4), chunks=(1, 3, 4))
Expand Down

0 comments on commit 9e671de

Please sign in to comment.