Skip to content

Commit 9203848

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

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
@@ -6,6 +6,6 @@ using Test
66
b = rand(5)
77
prob = LinearProblem(A, b)
88
@test A * solve(prob, LUFactorization();alias_A = false, alias_b = false) b
9-
@test A * solve(deepcopy(prob), QRFactorization();alias_A = false, alias_b = false) b
9+
@test A * solve(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)