Skip to content

Commit f003550

Browse files
committed
Remove XFAIL in at_ tests
1 parent 93876c9 commit f003550

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

tests/test_at.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from array_api_extra import at
1212
from array_api_extra._lib import Backend
1313
from array_api_extra._lib._at import _AtOp
14-
from array_api_extra._lib._testing import xfail, xp_assert_equal
14+
from array_api_extra._lib._testing import xp_assert_equal
1515
from array_api_extra._lib._utils._compat import array_namespace, is_writeable_array
1616
from array_api_extra._lib._utils._typing import Array, Index
1717
from array_api_extra.testing import lazy_xp_function
@@ -219,7 +219,6 @@ def test_alternate_index_syntax():
219219
def test_incompatible_dtype(
220220
xp: ModuleType,
221221
library: Backend,
222-
request: pytest.FixtureRequest,
223222
op: _AtOp,
224223
copy: bool | None,
225224
bool_mask: bool,
@@ -253,8 +252,6 @@ def test_incompatible_dtype(
253252
z = at_op(x, idx, op, 1.1, copy=copy)
254253

255254
elif library is Backend.DASK:
256-
if op in (_AtOp.MIN, _AtOp.MAX) and bool_mask:
257-
xfail(request, reason="need array-api-compat 1.11")
258255
z = at_op(x, idx, op, 1.1, copy=copy)
259256

260257
elif library is Backend.ARRAY_API_STRICT and op is not _AtOp.SET:

0 commit comments

Comments
 (0)