Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_dask_image/test_ndmeasure/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_measure_props(funcname, shape, chunks, has_lbls, ind):
if (
funcname == "median" and
ind is not None and
not np.in1d(np.atleast_1d(ind), lbls).all()
not np.isin(np.atleast_1d(ind), lbls).all()
):
pytest.skip("SciPy's `median` mishandles missing labels.")

Expand Down
Loading