From 6f1abeebd97768ef24a9e34bd68f286696a2a552 Mon Sep 17 00:00:00 2001 From: Mikolaj Wielgus Date: Mon, 14 Jul 2025 13:39:33 +0200 Subject: [PATCH] test: Fix test failures due to latest commit being botched --- tests/common/mod.rs | 4 ++-- .../0603_breakout/autoroute_all.cmd | 4 ++-- .../autoroute_signals.cmd | 8 ++++---- .../route_all.cmd | 2 +- .../autoroute_all.cmd | 2 +- .../autoroute_all_in_an_order.cmd | 18 +++++++++--------- .../autoroute_all.cmd | 4 ++-- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/tests/common/mod.rs b/tests/common/mod.rs index 3abd495..8565174 100644 --- a/tests/common/mod.rs +++ b/tests/common/mod.rs @@ -122,7 +122,7 @@ pub fn assert_single_layer_groundless_autoroute( let unionfind = unionfind(autorouter); for ratline in autorouter.ratsnest().graph().edge_indices() { - let (origin_dot, destination_dot) = autorouter.ratline_endpoint_dots(ratline); + let (origin_dot, destination_dot) = ratline.ref_(autorouter).endpoint_dots(); let origin_layer = autorouter .board() @@ -220,7 +220,7 @@ fn unionfind(autorouter: &mut Autorouter) -> UnionFind