Skip to content

Commit

Permalink
revert skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Doris committed Jan 20, 2025
1 parent 12a503e commit 40f9b83
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions test/Wrap.jl
Original file line number Diff line number Diff line change
Expand Up @@ -367,13 +367,12 @@ end
end
@testset "pushfirst!" begin
t = copy(z)
# TODO: Fix these
@test_skip pushfirst!(t, -1) === t
@test_skip t == [-1, 1, 2, 3]
@test_skip pushfirst!(t, -3, -2) === t
@test_skip t == [-3, -2, -1, 1, 2, 3]
@test_skip @test_throws Exception pushfirst!(t, 4.5)
@test_skip t == [-3, -2, -1, 1, 2, 3]
@test pushfirst!(t, -1) === t
@test t == [-1, 1, 2, 3]
@test pushfirst!(t, -3, -2) === t
@test t == [-3, -2, -1, 1, 2, 3]
@test @test_throws Exception pushfirst!(t, 4.5)
@test t == [-3, -2, -1, 1, 2, 3]
end
@testset "append!" begin
t = copy(z)
Expand Down

0 comments on commit 40f9b83

Please sign in to comment.