Skip to content

Commit 82b65f4

Browse files
authored
No longer skip a test which is fixed upstream. (#688)
1 parent c3cf5a1 commit 82b65f4

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

test/SHermitianCompact.jl

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -218,13 +218,7 @@ fill3(x) = fill(3, x)
218218

219219
@testset "transpose/adjoint" begin
220220
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
221+
@test transpose(SHermitianCompact{3}(a)) == transpose(a)
228222
@test adjoint(SHermitianCompact{3}(a)) == adjoint(a)
229223

230224
b = Hermitian([rand(Complex{Int}) for i = 1 : 3, j = 1 : 3])

0 commit comments

Comments
 (0)