We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1dba8e commit d809f1cCopy full SHA for d809f1c
tests/tensor/test_slinalg.py
@@ -671,5 +671,5 @@ def test_block_diagonal():
671
672
result = block_diagonal(matrices, format="csr", sparse=True)
673
sp_result = scipy.sparse.block_diag(matrices, format="csr")
674
- assert isinstance(result.eval()), type(sp_result))
+ assert isinstance(result.eval(), type(sp_result))
675
np.testing.assert_allclose(result.eval().toarray(), sp_result.toarray())
0 commit comments