diff --git a/xarray/tests/test_dask.py b/xarray/tests/test_dask.py index e35e94c4c4f..c344286a794 100644 --- a/xarray/tests/test_dask.py +++ b/xarray/tests/test_dask.py @@ -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)} )