From 1db2cffda762cbef61955ab3249cb1c7e99efd77 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Fri, 4 Oct 2024 12:21:32 +0200 Subject: [PATCH] Stop testing BigFloat keys in WeakKeyIdDict This fails with Julia nightly (as it made BigFloat immutable) and we don't really need this as a feature either. --- test/WeakKeyIdDict-test.jl | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/WeakKeyIdDict-test.jl b/test/WeakKeyIdDict-test.jl index d4b7de5e43..e4e5e26614 100644 --- a/test/WeakKeyIdDict-test.jl +++ b/test/WeakKeyIdDict-test.jl @@ -143,11 +143,6 @@ end @testset "WeakKeyIdDict.gc" begin - # issue #26939 - d26939 = WeakKeyIdDict() - d26939[big"1.0" + 1.1] = 1 - GC.gc() # make sure this doesn't segfault - wkd = WeakKeyIdDict([42]=>2, [43]=>3, [44]=>4) for k in keys(wkd) delete!(wkd, k)