summaryrefslogtreecommitdiff
path: root/numpy/array_api/tests
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2021-10-22 18:08:52 -0600
committerGitHub <noreply@github.com>2021-10-22 18:08:52 -0600
commit3740af94f888cf5708e7cfa18170b7c4069b1f17 (patch)
treed71c1c62dabbe880cbc5c31e2f467a489ece130b /numpy/array_api/tests
parent203936c1e0950637fc2852b7f70852c49bcea291 (diff)
parent92e89be3e3e2bd2cb4b8cd0eb2568d7331649480 (diff)
downloadnumpy-3740af94f888cf5708e7cfa18170b7c4069b1f17.tar.gz
Merge pull request #20071 from alessiamarcolini/refactor
MAINT: Remove unused imports and remove duplicated tests
Diffstat (limited to 'numpy/array_api/tests')
-rw-r--r--numpy/array_api/tests/test_creation_functions.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/numpy/array_api/tests/test_creation_functions.py b/numpy/array_api/tests/test_creation_functions.py
index 3cb8865cd..7b633eaf1 100644
--- a/numpy/array_api/tests/test_creation_functions.py
+++ b/numpy/array_api/tests/test_creation_functions.py
@@ -8,30 +8,15 @@ from .._creation_functions import (
empty,
empty_like,
eye,
- from_dlpack,
full,
full_like,
linspace,
- meshgrid,
ones,
ones_like,
zeros,
zeros_like,
)
from .._array_object import Array
-from .._dtypes import (
- _all_dtypes,
- _boolean_dtypes,
- _floating_dtypes,
- _integer_dtypes,
- _integer_or_boolean_dtypes,
- _numeric_dtypes,
- int8,
- int16,
- int32,
- int64,
- uint64,
-)
def test_asarray_errors():