Fix formatting

This commit is contained in:
2026-07-22 13:45:46 +02:00
parent 9608796f23
commit 3708c1e0d1
+5 -1
View File
@@ -39,7 +39,11 @@ mod tests {
fn petersen() {
let mut graph = AppendGraph::new();
let (vertices, edges) = super::petersen(&mut graph);
assert_eq!(graph.vertex_count(), 10, "unexpected number of added vertices");
assert_eq!(
graph.vertex_count(),
10,
"unexpected number of added vertices"
);
assert_eq!(graph.edge_count(), 15, "unexpected number of added edges");
assert!(
graph.vertices().all(|v| graph.degree(v) == 3),