From 888e80ba2271eec85c97112d1b9183b29d5e13c7 Mon Sep 17 00:00:00 2001 From: Joseph Tindall <51231103+JoeyT1994@users.noreply.github.com> Date: Wed, 1 Nov 2023 12:22:59 -0400 Subject: [PATCH] Update test/test_trees_and_forests.jl Co-authored-by: Matt Fishman --- test/test_trees_and_forests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_trees_and_forests.jl b/test/test_trees_and_forests.jl index d315158..ac84342 100644 --- a/test/test_trees_and_forests.jl +++ b/test/test_trees_and_forests.jl @@ -20,7 +20,7 @@ end @testset "Test Spanning Trees $g_string, $alg" for (g_string, g) in TestTreesAndForests.gs, alg in TestTreesAndForests.algs - s_tree = spanning_tree(alg, g) + s_tree = spanning_tree(g; alg) @test is_tree(s_tree) @test Set(vertices(s_tree)) == Set(vertices(g)) @test issubset(Set(edges(s_tree)), Set(edges(g)))