Skip to content

Commit

Permalink
Update stdlib/LinearAlgebra/test/symmetric.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Steven G. Johnson <stevenj@mit.edu>
  • Loading branch information
Sahiti004 and stevengj committed May 3, 2024
1 parent 45d89cd commit 030efd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/test/symmetric.jl
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ end
A = Symmetric(randn(5, 5))
@test reverse(A, dims=1) == reverse(Matrix(A), dims=1)
@test reverse(A, dims=2) == reverse(Matrix(A), dims=2)
@test reverse(A) == reverse(Matrix(A))
@test reverse(A)::Symmetric == reverse(Matrix(A))
end

@testset "Reverse operation on Hermitian" begin
Expand Down

0 comments on commit 030efd9

Please sign in to comment.