Skip to content

Commit e24f55e

Browse files
committed
Clear trailing whitespace
1 parent 9ee08c7 commit e24f55e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_strict/tests/test_manipulation_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test_reshape_copy():
2525
a = asarray(np.ones((2, 3)))
2626
b = reshape(a, (3, 2), copy=True)
2727
assert not np.shares_memory(a._array, b._array)
28-
28+
2929
a = asarray(np.ones((2, 3)))
3030
b = reshape(a, (3, 2), copy=False)
3131
assert np.shares_memory(a._array, b._array)

0 commit comments

Comments
 (0)