summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2023-05-07 12:20:22 +0300
committerGitHub <noreply@github.com>2023-05-07 12:20:22 +0300
commitac78f9e45313e963d6bd40a2a7d139993904d03f (patch)
tree072cac3e021c0520af0d8b5618c15d0028fd0d44 /numpy
parent276cc995c5e3860e226c072c9264012d2132c87a (diff)
parent291132113335d611a02fffcce5ce2f4b74c54802 (diff)
downloadnumpy-ac78f9e45313e963d6bd40a2a7d139993904d03f.tar.gz
Merge pull request #23726 from neutrinoceros/fix_numpy_testing_assert_array_less_docstring
DOC: fix incorrect description of raise condition in numpy.testing.assert_array_less's docstring
Diffstat (limited to 'numpy')
-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
--------