Skip to content

Commit 001b741

Browse files
Update test/runtests.jl
1 parent 99a74ea commit 001b741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using Test
55
A = rand(5, 5)
66
b = rand(5)
77
prob = LinearProblem(A, b)
8-
@test A * solve(deepcopy(prob), LUFactorization();alias_A = false, alias_b = false) b
8+
@test A * solve(prob, LUFactorization();alias_A = false, alias_b = false) b
99
@test A * solve(deepcopy(prob), QRFactorization();alias_A = false, alias_b = false) b
1010
@test A * solve(deepcopy(prob), SVDFactorization();alias_A = false, alias_b = false) b
1111
end

0 commit comments

Comments
 (0)