We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c76bf73 commit 8b5ee3dCopy full SHA for 8b5ee3d
1 file changed
tests/test_boruvka.py
@@ -75,9 +75,9 @@ def test_mst(setup_graph: Graph):
75
]
76
77
assert mst_weight == expected_weight, "MST weight does not match expected value"
78
- assert sorted(mst_edges) == sorted(
79
- expected_edges
80
- ), "MST edges do not match expected edges"
+ assert sorted(mst_edges) == sorted(expected_edges), (
+ "MST edges do not match expected edges"
+ )
81
82
83
def test_graph_initialization():
0 commit comments