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 12a503e commit 40f9b83Copy full SHA for 40f9b83
test/Wrap.jl
@@ -367,13 +367,12 @@ end
367
end
368
@testset "pushfirst!" begin
369
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 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)
377
378
@testset "append!" begin
379
0 commit comments