From 40f9b8389af57037df8f16446b3b3e5e6949a5eb Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Mon, 20 Jan 2025 14:28:08 +0000 Subject: [PATCH] revert skipped tests --- test/Wrap.jl | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/test/Wrap.jl b/test/Wrap.jl index 64df1a94..00258253 100644 --- a/test/Wrap.jl +++ b/test/Wrap.jl @@ -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)