Skip to content

Commit

Permalink
Fixup tests to actually, you know, test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbauman committed Feb 6, 2018
1 parent 28c6c87 commit bf1f55d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stdlib/LinearAlgebra/test/adjtrans.jl
Original file line number Diff line number Diff line change
Expand Up @@ -453,10 +453,10 @@ end
B .= B'
@test B == A'
B = copy(A)
B .= transpose(A)
B .= transpose(B)
@test B == transpose(A)
B = copy(A)
B .= A .* A'
B .= B .* B'
@test B == A .* A'
end

Expand Down

0 comments on commit bf1f55d

Please sign in to comment.