Skip to content

Commit 6a8406b

Browse files
Fix failing test with Dask 2025.2: ours issue not theirs (#2663)
Co-authored-by: Manuel Schlund <[email protected]>
1 parent 1690636 commit 6a8406b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/preprocessor/test_shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ def test_try_adding_calculated_cell_area():
440440
np.ma.masked_array(np.arange(2), mask=[1, 0]),
441441
da.arange(2),
442442
(0,),
443-
da.ma.masked_array(np.ones(2), np.arange(2)),
443+
da.ma.masked_array(np.arange(2), np.ones(2)),
444444
),
445445
(
446446
np.ones((2, 5)),

0 commit comments

Comments
 (0)