From 1b6f2e725abd3ff0727e169b95e91a461a4eda19 Mon Sep 17 00:00:00 2001 From: Davide Fioriti Date: Tue, 29 Oct 2024 23:47:49 +0100 Subject: [PATCH] Improve force_order --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 1e979ce..7a1eae1 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -87,7 +87,7 @@ energy_colors = palette(:seaborn_colorblind)[[9, 10, 3, 5, 2, 8, 1, 4]] @testset "force_order" begin @test_reference "refs/force_order.png" sankey( src, dst, weights; - force_order=[1=>5] # node 1 shall come before node 5 + force_order=[1=>2, 1=>5, 6=>3, 3=>4] # node 1 shall come before node 5 ) end end