diff --git a/tests/TestMST.cc b/tests/TestMST.cc index d20e365..a745d55 100644 --- a/tests/TestMST.cc +++ b/tests/TestMST.cc @@ -48,7 +48,7 @@ TEST_CASE("MST::reorder tests", "[MST]") } SECTION("Reorder with disconnected graph") { - std::vector>> T = { {2.0, {1, 2}}, {1.0, {0, 1}} }; + std::vector>> T = { {2.0, {2, 3}}, {1.0, {0, 1}} }; auto result = mst.reorder(T, 0); REQUIRE(result == std::vector>{{0, 1}, { 2, 3 }}); }