about summary refs log tree commit diff
path: root/compiler/rustc_data_structures/src/graph/tests.rs
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2024-04-14 15:51:29 +0000
committerMaybe Waffle <waffle.lapkin@gmail.com>2024-04-14 15:51:29 +0000
commitf5144938bd33af48a1b06fc5e11f7f30132be895 (patch)
tree36e8b0ff08e22f0dfd141987f253def705a7ed9a /compiler/rustc_data_structures/src/graph/tests.rs
parent0d5fc9bf584f0e8700f0c3d2854bb6c70453f624 (diff)
downloadrust-f5144938bd33af48a1b06fc5e11f7f30132be895.tar.gz
rust-f5144938bd33af48a1b06fc5e11f7f30132be895.zip
Rename `WithNumEdges` => `NumEdges` and `WithStartNode` => `StartNode`
Diffstat (limited to 'compiler/rustc_data_structures/src/graph/tests.rs')
-rw-r--r--compiler/rustc_data_structures/src/graph/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_data_structures/src/graph/tests.rs b/compiler/rustc_data_structures/src/graph/tests.rs
index 9cd8261be6c..118b6bd3eb6 100644
--- a/compiler/rustc_data_structures/src/graph/tests.rs
+++ b/compiler/rustc_data_structures/src/graph/tests.rs
@@ -42,7 +42,7 @@ impl DirectedGraph for TestGraph {
     }
 }
 
-impl WithStartNode for TestGraph {
+impl StartNode for TestGraph {
     fn start_node(&self) -> usize {
         self.start_node
     }