fix(tests): Specifify test http port

This commit is contained in:
FloRide1 2024-09-23 12:20:33 +02:00
parent ca708860bc
commit 1f0a1ca5be
No known key found for this signature in database
GPG key ID: A771F2D2BD20B4B4

View file

@ -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();