Skip to content

Commit d27f857

Browse files
committed
Fix format
1 parent 9d757b7 commit d27f857

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/commutative/complex.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@
9797
@test !LinearAlgebra.ishermitian(a + im)
9898
q = x + 1
9999
@test !LinearAlgebra.ishermitian(q)
100-
err = ErrorException("Complex-valued polynomials cannot be interpreted as hermitian scalars")
100+
err = ErrorException(
101+
"Complex-valued polynomials cannot be interpreted as hermitian scalars",
102+
)
101103
@test_throws err LinearAlgebra.hermitian(q, :U)
102104
@test_throws err LinearAlgebra.hermitian(q, :L)
103105
end

0 commit comments

Comments
 (0)