8000 linting · numpy/numpy@e6a3ce5 · GitHub
[go: up one dir, main page]

Skip to content

Commit e6a3ce5

Browse files
committed
linting
1 parent e01392f commit e6a3ce5

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
@@ -8535,7 +8535,7 @@ def __array__(self, dtype=None, copy=None):
85358535
arr_random = ArrayRandom()
85368536
second_copy = np.array(arr_random, copy=True, order="F")
85378537
assert arr_random.true_passed
8538-
assert not second_copy is copy_arr
8538+
assert second_copy is not copy_arr
85398539

85408540
@pytest.mark.skipif(not HAS_REFCOUNT, reason="Python lacks refcounts")
85418541
def test__array__reference_leak(self):

0 commit comments

Comments
 (0)
0