From e767afa459050c6151689a7d5ac6f7510ee85184 Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Sun, 20 Oct 2024 14:32:01 -0400 Subject: [PATCH] Missing tests for IdSet --- test/sets.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/sets.jl b/test/sets.jl index b78d2f15dd989..4d52cb243620c 100644 --- a/test/sets.jl +++ b/test/sets.jl @@ -1037,6 +1037,8 @@ end @test !isempty(A) A = empty!(A) @test isempty(A) + @test isnothing(sizehint!(A, 10)) + @test Base.copymutable(A) == copy(A) end @testset "⊊, ⊋" begin