We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 246e38a commit 02542ffCopy full SHA for 02542ff
array_api_tests/array_helpers.py
@@ -217,7 +217,7 @@ def assert_exactly_equal(x, y):
217
218
assert x.dtype == y.dtype, f"The input arrays do not have the same dtype ({x.dtype} != {y.dtype})"
219
220
- assert all(exactly_equal(x, y)), "The input arrays have different values"
+ assert all(exactly_equal(x, y)), f"The input arrays have different values ({x!r} != {y!r})"
221
222
def assert_finite(x):
223
"""
0 commit comments