Skip to content

Commit 40f9b83

Browse files
author
Christopher Doris
committed
revert skipped tests
1 parent 12a503e commit 40f9b83

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

test/Wrap.jl

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -367,13 +367,12 @@ end
367367
end
368368
@testset "pushfirst!" begin
369369
t = copy(z)
370-
# TODO: Fix these
371-
@test_skip pushfirst!(t, -1) === t
372-
@test_skip t == [-1, 1, 2, 3]
373-
@test_skip pushfirst!(t, -3, -2) === t
374-
@test_skip t == [-3, -2, -1, 1, 2, 3]
375-
@test_skip @test_throws Exception pushfirst!(t, 4.5)
376-
@test_skip t == [-3, -2, -1, 1, 2, 3]
370+
@test pushfirst!(t, -1) === t
371+
@test t == [-1, 1, 2, 3]
372+
@test pushfirst!(t, -3, -2) === t
373+
@test t == [-3, -2, -1, 1, 2, 3]
374+
@test @test_throws Exception pushfirst!(t, 4.5)
375+
@test t == [-3, -2, -1, 1, 2, 3]
377376
end
378377
@testset "append!" begin
379378
t = copy(z)

0 commit comments

Comments
 (0)