From 450b7d813065c5abe04bba2fb2f45acfa58061ac Mon Sep 17 00:00:00 2001 From: Jer Miller Date: Thu, 30 Jul 2026 16:28:48 +0000 Subject: [PATCH] test: remove source-spelling wiring assertion --- crates/solstone-linux/src/shell.rs | 10 ---------- 1 file(s) changed, 0 insertion(s)(+), 10 deletion(s)(-) diff --git a/crates/solstone-linux/src/shell.rs b/crates/solstone-linux/src/shell.rs --- a/crates/solstone-linux/src/shell.rs +++ b/crates/solstone-linux/src/shell.rs @@ -696,16 +696,6 @@ } } - // AC: 6 — the wiring has one session-connection constructor, preventing a second bus identity. - #[test] - fn wiring_has_exactly_one_session_connection_construction_site() { - let constructor = ["Connection", "::session()"].concat(); - assert_eq!(include_str!("shell.rs").matches(&constructor).count(), 1); - assert_eq!(include_str!("run.rs").matches(&constructor).count(), 0); - let serve_site = ["with_connection", "(inputs.connection.as_ref()"].concat(); - assert_eq!(include_str!("shell.rs").matches(&serve_site).count(), 1); - } - // AC: 8 — hung tasks and interface removal are both bounded without a live bus or tray. #[tokio::test] async fn shutdown_bounds_hung_task_and_removal() { -- tangled.sh