From 3d6237cb17fd6b84954daef76096b348b9ee1b45 Mon Sep 17 00:00:00 2001 From: OlivierHnt <38465572+OlivierHnt@users.noreply.github.com> Date: Mon, 9 Dec 2024 22:58:56 +0100 Subject: [PATCH] Restrict ambiguity test to at least Julia v1.10 --- test/aqua.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/aqua.jl b/test/aqua.jl index bbc8859d..49d56fbd 100644 --- a/test/aqua.jl +++ b/test/aqua.jl @@ -18,7 +18,9 @@ using Aqua for method_ambiguity ∈ ambs @show method_ambiguity end - @test length(ambs) == 0 + if VERSION ≥ v"1.10" + @test length(ambs) == 0 + end end @testset "Aqua tests (additional)" begin