Skip to content

Commit

Permalink
Fix the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Nov 11, 2023
1 parent eb057a2 commit 58b513d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/test/generic.jl
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ end
B = zeros(n, n)
copytotri!(B, A, uplo)
C = uplo == 'L' ? tril(A) : triu(A)
@test A C
@test B C
end
end

Expand Down
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/test/lapack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ end
B = zeros(elty, n, n)
LinearAlgebra.LAPACK.lacpy!(B, A, uplo)
C = uplo == 'L' ? tril(A) : (uplo == 'U' ? triu(A) : A)
@test A C
@test B C
end
end
end
Expand Down

0 comments on commit 58b513d

Please sign in to comment.