Skip to content

Commit

Permalink
Fix health_server test
Browse files Browse the repository at this point in the history
When running all tests in parallel with cargo nextest this would fail since the port is bound in multiple tests
  • Loading branch information
Jake-Shadle committed Mar 1, 2024
1 parent 1711b49 commit c853e89
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/health.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit c853e89

Please sign in to comment.