Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dcherian committed Dec 18, 2024
1 parent 02207bc commit aa3cbb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xarray/tests/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -1817,9 +1817,9 @@ def test_minimize_graph_size():


def test_idxmin_chunking():
# GH
# GH9425
x, y, t = 100, 100, 10
rang = np.random.randn(t * x * y)
rang = np.arange(t * x * y)
da = xr.DataArray(
rang.reshape(t, x, y), coords={"time": range(t), "x": range(x), "y": range(y)}
)
Expand Down

0 comments on commit aa3cbb2

Please sign in to comment.