From 9faade9f104f7db2f1733bd18403d8df9efbd381 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Thu, 14 Nov 2024 14:57:10 -0700 Subject: [PATCH] Remove an incorrect comment arange() is not supposed to support complex inputs. --- array_api_tests/test_creation_functions.py | 1 - 1 file changed, 1 deletion(-) diff --git a/array_api_tests/test_creation_functions.py b/array_api_tests/test_creation_functions.py index 4975a5f9..60014b74 100644 --- a/array_api_tests/test_creation_functions.py +++ b/array_api_tests/test_creation_functions.py @@ -76,7 +76,6 @@ def reals(min_value=None, max_value=None) -> st.SearchStrategy[Union[int, float] ) -# TODO: support testing complex dtypes @given(dtype=st.none() | hh.real_dtypes, data=st.data()) def test_arange(dtype, data): if dtype is None or dh.is_float_dtype(dtype):