summaryrefslogtreecommitdiff
path: root/numpy/array_api/tests
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/array_api/tests')
-rw-r--r--numpy/array_api/tests/test_data_type_functions.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/array_api/tests/test_data_type_functions.py b/numpy/array_api/tests/test_data_type_functions.py
index 3f01bb311..efe3d0abd 100644
--- a/numpy/array_api/tests/test_data_type_functions.py
+++ b/numpy/array_api/tests/test_data_type_functions.py
@@ -8,8 +8,6 @@ from numpy import array_api as xp
[
(xp.int8, xp.int16, True),
(xp.int16, xp.int8, False),
- # np.can_cast has discrepancies with the Array API
- # See https://github.com/numpy/numpy/issues/20870
(xp.bool, xp.int8, False),
(xp.asarray(0, dtype=xp.uint8), xp.int8, False),
],