Skip to content

Commit 05a3b82

Browse files
JuliaPoomattip
andauthored
Update numpy/_core/tests/test_multiarray.py
Co-authored-by: Matti Picus <[email protected]>
1 parent 2398d9c commit 05a3b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/_core/tests/test_multiarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10217,7 +10217,7 @@ def test_partition_fp(N, dtype):
1021710217
arr[1] = np.inf
1021810218
o1 = np.partition(arr, -2, kind='introselect')
1021910219
o2 = arr[np.argpartition(arr, -2, kind='introselect')]
10220-
for out in [o1,o2]:
10220+
for out in [o1, o2]:
1022110221
assert_(np.isnan(out[-1]))
1022210222
assert_equal(out[-2], np.inf)
1022310223

0 commit comments

Comments
 (0)