Changed 09_ports.yml to 10_ports.yml

This commit is contained in:
2025-09-03 17:40:59 +02:00
parent e2993d2912
commit 751615b1a4
7 changed files with 8 additions and 8 deletions

View File

@@ -8,7 +8,7 @@ class TestOAuth2ProxyPorts(unittest.TestCase):
def setUpClass(cls):
# Set up root paths and load oauth2_proxy ports mapping
cls.ROOT = Path(__file__).parent.parent.parent.resolve()
cls.PORTS_FILE = cls.ROOT / 'group_vars' / 'all' / '09_ports.yml'
cls.PORTS_FILE = cls.ROOT / 'group_vars' / 'all' / '10_ports.yml'
with cls.PORTS_FILE.open() as f:
data = yaml.safe_load(f)
cls.oauth2_ports = (
@@ -50,7 +50,7 @@ class TestOAuth2ProxyPorts(unittest.TestCase):
if app_id not in self.oauth2_ports:
self.fail(
f"Missing oauth2_proxy port mapping for application '{app_id}' "
f"in group_vars/all/09_ports.yml"
f"in group_vars/all/10_ports.yml"
)