From 18d4a6ab63cd8de50daaec600755eada10f1e551 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Patrick=20St=C3=B6ckle?=
Date: Sat, 8 Nov 2025 16:47:56 +0100
Subject: [PATCH] chore(typos): fix additional typos (#2396)
---
tests/server/auth/test_oidc_proxy.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/server/auth/test_oidc_proxy.py b/tests/server/auth/test_oidc_proxy.py
index 319751bc9..2dd9cac24 100644
--- a/tests/server/auth/test_oidc_proxy.py
+++ b/tests/server/auth/test_oidc_proxy.py
@@ -307,7 +307,7 @@ class TestOIDCConfiguration:
with pytest.raises(ValueError, match="Invalid URL for configuration metadata"):
OIDCConfiguration.model_validate(valid_oidc_configuration_dict)
- def test_explict_strict_with_bad_url_raises_error(
+ def test_explicit_strict_with_bad_url_raises_error(
self, valid_oidc_configuration_dict
):
"""Test default configuration with explicit True strict setting and bad URL setting."""
@@ -359,7 +359,7 @@ class TestOIDCConfiguration:
def validate_get_oidc_configuration(oidc_configuration, strict, timeout_seconds):
- """Validate get_oidc_configuation call."""
+ """Validate get_oidc_configuration call."""
with patch("httpx.get") as mock_get:
mock_response = MagicMock(spec=Response)
mock_response.json.return_value = oidc_configuration