From 28c7d8860c0f0283e62c93cfbcebc2cb1ce4a8a1 Mon Sep 17 00:00:00 2001 From: Christopher Doris Date: Mon, 20 Jan 2025 14:34:20 +0000 Subject: [PATCH] fix merge error --- test/Wrap.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Wrap.jl b/test/Wrap.jl index 00258253..a1e2a359 100644 --- a/test/Wrap.jl +++ b/test/Wrap.jl @@ -371,7 +371,7 @@ end @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_throws Exception pushfirst!(t, 4.5) @test t == [-3, -2, -1, 1, 2, 3] end @testset "append!" begin