Skip to content

Commit 27be03d

Browse files
committed
Update copy test
1 parent 5448350 commit 27be03d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_layoutarray.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Base.copy(A::MyVector) = MyVector(copy(A.A))
122122
@test cholesky!(deepcopy(S), CRowMaximum()).U cholesky(Matrix(S), CRowMaximum()).U
123123
@test cholesky(S) \ b cholesky(Matrix(S)) \ b cholesky(Matrix(S)) \ MyVector(b)
124124
@test cholesky(S, CRowMaximum()) \ b cholesky(Matrix(S), CRowMaximum()) \ b
125-
@test cholesky(S, CRowMaximum()) \ b ldiv!(cholesky(Matrix(S), CRowMaximum()), copy(MyVector(b)))
125+
@test cholesky(S, CRowMaximum()) \ b ldiv!(cholesky(Matrix(S), CRowMaximum()), copy(b))
126126
@test cholesky(S) \ b Matrix(S) \ b Symmetric(Matrix(S)) \ b
127127
@test cholesky(S) \ b Symmetric(Matrix(S)) \ MyVector(b)
128128
if VERSION >= v"1.9"

0 commit comments

Comments
 (0)