diff options
| author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-08-30 20:06:39 +0200 |
|---|---|---|
| committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-09-07 17:54:17 +0200 |
| commit | 87edf02edf11f93b9039dd7c18b6d4809cd64654 (patch) | |
| tree | eb6f74ceebf6398213b37172956471ffb90deb69 /numpy/tests | |
| parent | 23e62d044e3e60e9c03050982f231e55f7ce1735 (diff) | |
| download | numpy-87edf02edf11f93b9039dd7c18b6d4809cd64654.tar.gz | |
TST: Fixed a test
Diffstat (limited to 'numpy/tests')
| -rw-r--r-- | numpy/tests/typing/reveal/ndarray_conversion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/tests/typing/reveal/ndarray_conversion.py b/numpy/tests/typing/reveal/ndarray_conversion.py index 411adcf63..4ee637b75 100644 --- a/numpy/tests/typing/reveal/ndarray_conversion.py +++ b/numpy/tests/typing/reveal/ndarray_conversion.py @@ -9,7 +9,7 @@ reveal_type(nd.item(0, 1)) # E: Any reveal_type(nd.item((0, 1))) # E: Any # tolist -reveal_type(nd.tolist()) # E: builtins.list[Any] +reveal_type(nd.tolist()) # E: Any # itemset does not return a value # tostring is pretty simple |
