summaryrefslogtreecommitdiff
path: root/numpy/testing/_private/utils.py
diff options
context:
space:
mode:
authorClément Robert <cr52@protonmail.com>2023-05-05 23:14:44 +0200
committerClément Robert <cr52@protonmail.com>2023-05-05 23:14:44 +0200
commit291132113335d611a02fffcce5ce2f4b74c54802 (patch)
treee0ce4de6459adb06ddaf5e5174a3e7b72df9ca4f /numpy/testing/_private/utils.py
parentc942d65ea246d582b009c5270de949cb24018e13 (diff)
downloadnumpy-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.py2
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
--------