Skip to content

Commit 0f77124

Browse files
committed
Update more tests
1 parent 27be03d commit 0f77124

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_layoutarray.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ Base.copy(A::MyVector) = MyVector(copy(A.A))
106106
@test_throws ErrorException qr!(A)
107107
@test lu!(copy(A)).factors lu(A.A).factors
108108
b = randn(5)
109-
@test A \ b == A.A \ b == A.A \ MyVector(b) == ldiv!(lu(A.A), copy(MyVector(b)))
110-
@test A \ b == ldiv!(lu(A), copy(MyVector(b))) == ldiv!(lu(A), copy(b))
109+
@test A \ b == A.A \ b == A.A \ MyVector(b) == ldiv!(lu(A.A), copy(b))
110+
@test A \ b == ldiv!(lu(A), copy(b))
111111
@test lu(A).L == lu(A.A).L
112112
@test lu(A).U == lu(A.A).U
113113
@test lu(A).p == lu(A.A).p

0 commit comments

Comments
 (0)