Format test code

This commit is contained in:
2026-09-03 09:06:22 +02:00
parent 5825ef3b47
commit 8a1d491943
4 changed files with 2 additions and 10 deletions
@@ -60,4 +60,3 @@ where
); );
assert_eq!(graph.edge_count(), 1, "unexpected edge count after re-add"); assert_eq!(graph.edge_count(), 1, "unexpected edge count after re-add");
} }
@@ -150,4 +150,3 @@ pub fn edge_map_new_edge<G: GraphTopologyAddition>() {
"unexpected value from map read after write for new edge" "unexpected value from map read after write for new edge"
); );
} }
@@ -297,9 +297,7 @@ where
} }
} }
pub fn incident_vertices_after_delete_edge< pub fn incident_vertices_after_delete_edge<G: GraphTopologyDeletion + GraphTopologyAddition>()
G: GraphTopologyDeletion + GraphTopologyAddition,
>()
where where
G::Vertex: Debug, G::Vertex: Debug,
G::Edge: Debug, G::Edge: Debug,
@@ -446,9 +444,7 @@ where
} }
} }
pub fn incidence_cursor_after_delete_vertex< pub fn incidence_cursor_after_delete_vertex<G: GraphTopologyDeletion + GraphTopologyAddition>()
G: GraphTopologyDeletion + GraphTopologyAddition,
>()
where where
G::Vertex: Debug, G::Vertex: Debug,
G::Edge: Debug, G::Edge: Debug,
@@ -540,4 +536,3 @@ fn assert_vertex_incidence_cursor<G: GraphTopology>(
v v
); );
} }
-1
View File
@@ -804,4 +804,3 @@ where
); );
} }
} }