From 092b9606ff2b721d858a5c7b2b27a2f9942b4bc4 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 16 Jul 2025 10:10:41 +0100 Subject: chore: nix flake update required running: `cargo fix --allow-dirty --allow-staged` `cargo clippy --fix --allow-dirty -- -D warnings` to fix problems and then manually fixing some too --- test_utils/src/relay.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test_utils/src/relay.rs') diff --git a/test_utils/src/relay.rs b/test_utils/src/relay.rs index e820651..14778d9 100644 --- a/test_utils/src/relay.rs +++ b/test_utils/src/relay.rs @@ -186,7 +186,7 @@ impl<'a> Relay<'a> { pub fn shutdown_relay(port: u64) -> Result<()> { let mut counter = 0; - while let Ok((mut socket, _)) = tungstenite::connect(format!("ws://localhost:{}", port)) { + while let Ok((mut socket, _)) = tungstenite::connect(format!("ws://localhost:{port}")) { counter += 1; if counter == 1 { socket.write(tungstenite::Message::text("shut me down"))?; -- cgit v1.2.3