diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-02-10 22:17:04 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-02-11 00:41:33 +0100 |
commit | 9f6616718e5a84e3df024643bb33a8dd7c78b5ef (patch) | |
tree | 53c3df22979fa3328a2eaff7577f5c0b4e8bf888 /numpy | |
parent | f886b461e17f390c65bda2837998db16a419d940 (diff) | |
download | numpy-9f6616718e5a84e3df024643bb33a8dd7c78b5ef.tar.gz |
TST: Removed an incorrect `dict.values()` call
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/typing/tests/test_typing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/tests/test_typing.py b/numpy/typing/tests/test_typing.py index eb7e0b09e..e80282420 100644 --- a/numpy/typing/tests/test_typing.py +++ b/numpy/typing/tests/test_typing.py @@ -91,7 +91,7 @@ def test_success(path): # Alias `OUTPUT_MYPY` so that it appears in the local namespace output_mypy = OUTPUT_MYPY if path in output_mypy: - raise AssertionError("\n".join(v for v in output_mypy[path].values())) + raise AssertionError("\n".join(v for v in output_mypy[path])) @pytest.mark.slow |