Skip to content

Commit cd8f117

Browse files
committed
Fix test_manipulation_functions.assert_equals
1 parent 0326aa3 commit cd8f117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_tests/test_manipulation_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def assert_equals(
6767
if dh.is_float_dtype(out_val.dtype) and xp.isnan(out_val):
6868
assert xp.isnan(x_val), msg
6969
else:
70-
assert out_val == out_val, msg
70+
assert x_val == out_val, msg
7171

7272

7373
@st.composite

0 commit comments

Comments
 (0)