diff options
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/tests/typing/pass/simple.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/tests/typing/pass/simple.py b/numpy/tests/typing/pass/simple.py index b9715da5d..b4b42ca0c 100644 --- a/numpy/tests/typing/pass/simple.py +++ b/numpy/tests/typing/pass/simple.py @@ -5,7 +5,7 @@ import numpy as np from typing import Iterable # noqa: F401 # Basic checks -array = np.array([1, 2]) +array = np.array([2, 3]) def ndarray_func(x): |