From bb3291155da3da63fdeba860695e7459c9d47182 Mon Sep 17 00:00:00 2001 From: aaldebs99 Date: Sat, 11 Oct 2025 17:45:49 +0000 Subject: [PATCH] fix(unit-tests): add missing fields to OIDC unit tests --- tests/unit_oidc_unit_tests.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/unit_oidc_unit_tests.rs b/tests/unit_oidc_unit_tests.rs index b8c81b6..62e566e 100644 --- a/tests/unit_oidc_unit_tests.rs +++ b/tests/unit_oidc_unit_tests.rs @@ -26,6 +26,8 @@ fn create_test_config_with_oidc(issuer_url: &str) -> Config { oidc_client_secret: Some("test-client-secret".to_string()), oidc_issuer_url: Some(issuer_url.to_string()), oidc_redirect_uri: Some("http://localhost:8000/auth/oidc/callback".to_string()), + oidc_auto_register: true, + allow_local_auth: true, s3_enabled: false, s3_config: None, }