Skip to content

Commit fc36776

Browse files
committed
forgot a lambda in raises (fixup)
1 parent 71ab90c commit fc36776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

symengine/tests/test_matrices.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414

1515
def test_init():
16-
raises(ValueError, DenseMatrix(2, 1, [0]*4))
16+
raises(ValueError, lambda: DenseMatrix(2, 1, [0]*4))
1717

1818

1919
def test_get():

0 commit comments

Comments
 (0)