From f80935234de896e2684ca869a61700f7c74b975f Mon Sep 17 00:00:00 2001 From: Antony Della Vecchia Date: Tue, 19 Mar 2024 10:27:28 +0100 Subject: [PATCH] adds test for empty dict --- test/Serialization/containers.jl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/Serialization/containers.jl b/test/Serialization/containers.jl index be98cd04c269..119ba29490cd 100644 --- a/test/Serialization/containers.jl +++ b/test/Serialization/containers.jl @@ -139,6 +139,11 @@ @test original == loaded end end + + original = Dict{Symbol, Int}() + test_save_load_roundtrip(path, original) do loaded + @test original == loaded + end end @testset "Testing (de)serialization of Set" begin