diff options
author | Clément Robert <cr52@protonmail.com> | 2023-05-05 23:14:44 +0200 |
---|---|---|
committer | Clément Robert <cr52@protonmail.com> | 2023-05-05 23:14:44 +0200 |
commit | 291132113335d611a02fffcce5ce2f4b74c54802 (patch) | |
tree | e0ce4de6459adb06ddaf5e5174a3e7b72df9ca4f /numpy/testing/_private/utils.py | |
parent | c942d65ea246d582b009c5270de949cb24018e13 (diff) | |
download | numpy-291132113335d611a02fffcce5ce2f4b74c54802.tar.gz |
DOC: fix incorrect description of raise condition in numpy.testing.assert_array_less's docstring
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index 8ef886cac..cca7b8063 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -1067,7 +1067,7 @@ def assert_array_less(x, y, err_msg='', verbose=True): Raises ------ AssertionError - If actual and desired objects are not equal. + If x is not strictly smaller than y, element-wise. See Also -------- |