We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3cf5a1 commit 82b65f4Copy full SHA for 82b65f4
test/SHermitianCompact.jl
@@ -218,13 +218,7 @@ fill3(x) = fill(3, x)
218
219
@testset "transpose/adjoint" begin
220
a = Hermitian([[rand(Complex{Int}) for i = 1 : 2, j = 1 : 2] for row = 1 : 3, col = 1 : 3])
221
- if VERSION < v"1.2.0-"
222
- @test transpose(SHermitianCompact{3}(a)) == transpose(a)
223
- else
224
- # FIXME: This `transpose(a)` crashes in v1.2.0-rc1.
225
- # See https://github.com/JuliaLang/julia/issues/32222
226
- @test_skip transpose(SHermitianCompact{3}(a)) == transpose(a)
227
- end
+ @test transpose(SHermitianCompact{3}(a)) == transpose(a)
228
@test adjoint(SHermitianCompact{3}(a)) == adjoint(a)
229
230
b = Hermitian([rand(Complex{Int}) for i = 1 : 3, j = 1 : 3])
0 commit comments