Skip to content

Commit

Permalink
Update hardcoded tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub committed Jan 17, 2024
1 parent 67b8809 commit 39dd9da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1620,8 +1620,8 @@ end
@test transpose(A) * Zeros(mA) Zeros(nA)
@test A' * Zeros(mA) Zeros(nA)

@test transpose(a) * Zeros(la, 3) Zeros(1,3)
@test a' * Zeros(la,3) Zeros(1,3)
@test transpose(a) * Zeros(la, 3) transpose(Zeros(3))
@test a' * Zeros(la,3) adjoint(Zeros(3))

@test Zeros(la)' * Transpose(Adjoint(a)) == 0.0

Expand Down

0 comments on commit 39dd9da

Please sign in to comment.