From 1f0a1ca5bee86e6a5d67efe9080d34ccee31f9f8 Mon Sep 17 00:00:00 2001 From: FloRide1 Date: Mon, 23 Sep 2024 12:20:33 +0200 Subject: [PATCH] fix(tests): Specifify test http port --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 5b42095..13473b1 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -72,7 +72,7 @@ async fn basic_login_oidc() { let server = axum_test::TestServerConfig::builder() .save_cookies() - .http_transport() + .http_transport_with_ip_port(Some("127.0.0.1".parse().unwrap()), Some(3000)) .build_server(app) .unwrap();