Skip to content

Commit 0bddc3a

Browse files
committed
Put Hermitian back
1 parent 8a21f5a commit 0bddc3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/LinearAlgebra/test/symmetric.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ end
8989
@test (-Symmetric(asym))::typeof(Symmetric(asym)) == -asym
9090
@test (-Hermitian(aherm))::typeof(Hermitian(aherm)) == -aherm
9191
@test (-Symmetric([true true; false false]))::Symmetric{Int,Matrix{Int}} == [-1 -1; -1 0]
92-
@test (-Symmetric([true false; true false]))::Symmetric{Int,Matrix{Int}} == [-1 0; 0 0]
92+
@test (-Hermitian([true false; true false]))::Hermitian{Int,Matrix{Int}} == [-1 0; 0 0]
9393
end
9494

9595
@testset "Addition and subtraction for Symmetric/Hermitian matrices" begin

0 commit comments

Comments
 (0)