From a0c70673b8759c61029daf11f9360e06f2d13e6a Mon Sep 17 00:00:00 2001 From: Charles Kawczynski Date: Fri, 16 Jun 2023 14:42:45 -0700 Subject: [PATCH] Increase ambiguities limit --- test/aqua.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/aqua.jl b/test/aqua.jl index 5d01d02beb..e97d004427 100644 --- a/test/aqua.jl +++ b/test/aqua.jl @@ -18,11 +18,11 @@ using Aqua # If the number of ambiguities is less than the limit below, # then please lower the limit based on the new number of ambiguities. # We're trying to drive this number down to zero to reduce latency. - @test length(ambs) ≤ 15 # Uncomment for debugging: - # for method_ambiguity in ambs - # @show method_ambiguity - # end + for method_ambiguity in ambs + @show method_ambiguity + end + @test length(ambs) ≤ 16 end @testset "Aqua tests (additional)" begin