diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2022-08-02 19:26:42 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 13:26:42 +0300 |
commit | 7c8e1134ae86f8a8c002e1068337bec63ddf7f0d (patch) | |
tree | 02b602328e924297d317e17d28e6700fe8a74695 /numpy/array_api/tests/test_array_object.py | |
parent | 918065167a3860c97d52d6292f206101d660be6f (diff) | |
download | numpy-7c8e1134ae86f8a8c002e1068337bec63ddf7f0d.tar.gz |
MAINT: fix typo in test_array_object test description (#22071)
Diffstat (limited to 'numpy/array_api/tests/test_array_object.py')
-rw-r--r-- | numpy/array_api/tests/test_array_object.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/array_api/tests/test_array_object.py b/numpy/array_api/tests/test_array_object.py index ba9223532..f6efacefa 100644 --- a/numpy/array_api/tests/test_array_object.py +++ b/numpy/array_api/tests/test_array_object.py @@ -364,7 +364,7 @@ def test_array_keys_use_private_array(): in __getitem__(). This is achieved by passing array_api arrays with 0-sized dimensions, which NumPy-proper treats erroneously - not sure why! - TODO: Find and use appropiate __setitem__() case. + TODO: Find and use appropriate __setitem__() case. """ a = ones((0, 0), dtype=bool_) assert a[a].shape == (0,) |