Skip to content

Commit d809f1c

Browse files
Typo in test function
1 parent a1dba8e commit d809f1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/tensor/test_slinalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,5 +671,5 @@ def test_block_diagonal():
671671

672672
result = block_diagonal(matrices, format="csr", sparse=True)
673673
sp_result = scipy.sparse.block_diag(matrices, format="csr")
674-
assert isinstance(result.eval()), type(sp_result))
674+
assert isinstance(result.eval(), type(sp_result))
675675
np.testing.assert_allclose(result.eval().toarray(), sp_result.toarray())

0 commit comments

Comments
 (0)