Skip to content

Commit e683488

Browse files
committed
test: fix function signature
1 parent efed704 commit e683488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittest/python/decompositions/sparse/cholmod/test_CholmodSimplicialLDLT.py

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

1515
assert llt.info() == eigenpy.ComputationInfo.Success
1616

17-
X = rng.rand((dim, 20))
17+
X = rng.random((dim, 20))
1818
B = A.dot(X)
1919
X_est = llt.solve(B)
2020
assert eigenpy.is_approx(X, X_est)

0 commit comments

Comments
 (0)