Skip to content

Commit 06b28b6

Browse files
committed
Remove XFAIL in at_ tests
1 parent a275439 commit 06b28b6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Diff for: tests/test_at.py

+1-4
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
@@ -181,7 +181,6 @@ def test_alternate_index_syntax():
181181
def test_incompatible_dtype(
182182
xp: ModuleType,
183183
library: Backend,
184-
request: pytest.FixtureRequest,
185184
op: _AtOp,
186185
copy: bool | None,
187186
bool_mask: bool,
@@ -215,8 +214,6 @@ def test_incompatible_dtype(
215214
z = at_op(x, idx, op, 1.1, copy=copy)
216215

217216
elif library is Backend.DASK:
218-
if op in (_AtOp.MIN, _AtOp.MAX) and bool_mask:
219-
xfail(request, reason="need array-api-compat 1.11")
220217
z = at_op(x, idx, op, 1.1, copy=copy)
221218

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

0 commit comments

Comments
 (0)