Skip to content

Commit 1e65e14

Browse files
committed
TST: searchsorted: widen NaN sorting skip for torch
1 parent 3578053 commit 1e65e14

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/main/test_searching.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def test_nd(
170170
):
171171
if nans_x and is_jax_namespace(xp):
172172
pytest.xfail("https://github.com/jax-ml/jax/issues/39887")
173-
if nans_x and is_torch_namespace(xp) and searchsorted == xpx_searchsorted:
173+
if nans_x and is_torch_namespace(xp):
174174
pytest.skip("torch sorts NaNs differently")
175175
if isinstance(shape, tuple) and searchsorted == _funcs_searchsorted:
176176
message = (

0 commit comments

Comments
 (0)