Skip to content

Commit 3db471d

Browse files
SamLubelskyoscarbenjamin
authored andcommitted
actually fixed trailing whitespace
1 parent 0f33e39 commit 3db471d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sympy/matrices/expressions/tests/test_matexpr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,8 +376,8 @@ def test_numpy_conversion():
376376
except ImportError:
377377
skip('NumPy must be available to test creating matrices from ndarrays')
378378
A = MatrixSymbol('A', 2, 2)
379-
np_array = array([[MatrixElement(A, 0, 0), MatrixElement(A, 1, 0)],
380-
[MatrixElement(A, 0, 1), MatrixElement(A, 1, 1)]])
379+
np_array = array([[MatrixElement(A, 0, 0), MatrixElement(A, 1, 0)],
380+
[MatrixElement(A, 0, 1), MatrixElement(A, 1, 1)]])
381381
assert array_equal(array(A), np_array)
382382
assert array_equal(array(A, copy=True), np_array)
383383
#raises(TypeError, lambda: array(A, copy=False)) TODO: Uncomment this whenever copy variable properly passes to __array__

0 commit comments

Comments
 (0)