From 1675f020b938685a7360b9c841ab665da9f80925 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Ra=C4=8Dinsk=C3=BD?= Date: Thu, 18 Feb 2021 10:19:30 +0100 Subject: [PATCH] added tests for dict with symbols in keys and different types --- test/runtests.jl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/runtests.jl b/test/runtests.jl index d5d6c41..f2165ca 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -42,6 +42,8 @@ end @test roundtrip_equal(Set([1,2,3])) @test roundtrip_equal(Dict("a"=>1)) @test roundtrip_equal(T(())) + @test roundtrip_equal(Dict(:a => 1,:b => [1, 2])) + @test roundtrip_equal(Dict(:a => [1+2im, 3+4im], :b => "Hello, World!")) end @testset "Circular References" begin