diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2021-05-11 12:44:34 +0200 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2021-05-11 12:44:34 +0200 |
commit | f49fc543292103df783d40f18465ccd6f6de3509 (patch) | |
tree | 97017da7195d1b623172b4d197da1c56b367b239 | |
parent | 7e6e1f1a5e1d333a6a17826d5f56f7e23598625f (diff) | |
download | numpy-f49fc543292103df783d40f18465ccd6f6de3509.tar.gz |
TST: Fixed an incorrect error message
-rw-r--r-- | numpy/typing/tests/data/fail/lib_version.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/tests/data/fail/lib_version.py b/numpy/typing/tests/data/fail/lib_version.py index 0769068d4..2758cfe40 100644 --- a/numpy/typing/tests/data/fail/lib_version.py +++ b/numpy/typing/tests/data/fail/lib_version.py @@ -3,4 +3,4 @@ from numpy.lib import NumpyVersion version: NumpyVersion NumpyVersion(b"1.8.0") # E: incompatible type -version >= b"1.8.0" # E: incompatible type +version >= b"1.8.0" # E: Unsupported operand types |