From f90631125e0ad0dec7f9e836319826b596d2a7da Mon Sep 17 00:00:00 2001
From: Richard Steinmetz
Date: Wed, 19 Mar 2025 14:46:41 +0100
Subject: [PATCH] test: prepare for e2e tests
Signed-off-by: Richard Steinmetz
---
php/src/Data/ConfigurationManager.php | 2 +-
php/templates/containers.twig | 6 +++---
php/templates/setup.twig | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/php/src/Data/ConfigurationManager.php b/php/src/Data/ConfigurationManager.php
index 7c7039af..e2291a76 100644
--- a/php/src/Data/ConfigurationManager.php
+++ b/php/src/Data/ConfigurationManager.php
@@ -900,7 +900,7 @@ class ConfigurationManager
}
public function shouldDomainValidationBeSkipped() : bool {
- if (getenv('SKIP_DOMAIN_VALIDATION') !== false) {
+ if (getenv('SKIP_DOMAIN_VALIDATION') === 'true') {
return true;
}
return false;
diff --git a/php/templates/containers.twig b/php/templates/containers.twig
index 1bbfc001..92cfbde8 100644
--- a/php/templates/containers.twig
+++ b/php/templates/containers.twig
@@ -106,7 +106,7 @@
Please note: The domain validation is disabled so any domain will be accepted here! Make sure you do not make a typo here as you will not be able to change it afterwards!
{% endif %}