From c9fe2eda36415745aed82ae611047dfa8617db1d Mon Sep 17 00:00:00 2001 From: Eric Espie Date: Thu, 26 Mar 2026 10:52:27 +0100 Subject: [PATCH] :white_check_mark: Fix CI --- .../integration-tests/DictionariesConsistencyAfterSetupTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/php-unit-tests/integration-tests/DictionariesConsistencyAfterSetupTest.php b/tests/php-unit-tests/integration-tests/DictionariesConsistencyAfterSetupTest.php index be9aa1dcfa..b870ebd33e 100644 --- a/tests/php-unit-tests/integration-tests/DictionariesConsistencyAfterSetupTest.php +++ b/tests/php-unit-tests/integration-tests/DictionariesConsistencyAfterSetupTest.php @@ -65,6 +65,8 @@ class DictionariesConsistencyAfterSetupTest extends ItopTestCase if (! is_null($sTemplate)) { $aDictByLang[$sLangCode][$sDictKey] = $sTemplate; + } else if (isset($aDictByLang[$sLangCode][$sDictKey])) { + unset($aDictByLang[$sLangCode][$sDictKey]); } $this->SetNonPublicStaticProperty(\Dict::class, 'm_aData', $aDictByLang);