From c853e896f401eb85c5f74ef000123ac9bf2d715f Mon Sep 17 00:00:00 2001 From: Jake Shadle Date: Fri, 1 Mar 2024 11:13:40 +0100 Subject: [PATCH] Fix health_server test When running all tests in parallel with cargo nextest this would fail since the port is bound in multiple tests --- tests/health.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/health.rs b/tests/health.rs index 6e1df50279..eb4377e814 100644 --- a/tests/health.rs +++ b/tests/health.rs @@ -32,7 +32,10 @@ async fn health_server() { }); t.run_server( server_config, - None, + Some(quilkin::Proxy { + qcmp_port: 9094, + ..Default::default() + }), Some(Some((std::net::Ipv6Addr::UNSPECIFIED, 9093).into())), ) .await;