Skip to content

Commit

Permalink
code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarrasch committed Feb 20, 2022
1 parent ceaca9e commit 3ed1d72
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/runtests.jl
Expand Up @@ -269,8 +269,9 @@ end
M4 = Matrix(C4)
M5 = Matrix(C5)

for t1 in (identity, adjoint), t2 in (identity, adjoint), fact in (identity, factorize)
C = t1(fact(C1))*t2(fact(C2))
for t1 in (identity, adjoint), t2 in (identity, adjoint),
fact1 in (identity, factorize), fact2 in (identity, factorize)
C = t1(fact1(C1))*t2(fact2(C2))
@test C isa Circulant
@test C t1(M1)*t2(M2)
end
Expand Down

0 comments on commit 3ed1d72

Please sign in to comment.