From ac010cf926b626c9368a0e458e31539d944aa7b0 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Wed, 12 Jun 2024 08:51:28 +0200 Subject: [PATCH] Fix other typo in tests (#24) --- test/coloring.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/coloring.jl b/test/coloring.jl index 162e997..ca99ace 100644 --- a/test/coloring.jl +++ b/test/coloring.jl @@ -92,7 +92,7 @@ end; @testset verbose = true "Bipartite graph bicoloring" begin @testset "$method" for method in BICOLORING_METHODS - @testset "$order" for order in BICOLORING_ORDERS[1:1] + @testset "$order" for order in BICOLORING_ORDERS @testset "(n, m, p) = $((n, m, p))" for (n, m, p) in asymmetric_params J = sprand(rng, Bool, n, m, p) filename = joinpath(@__DIR__, "J.mtx")