From: Roland Häder Date: Thu, 21 Aug 2025 20:33:13 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c6f383c0d2cc9d7dd8d82dbc5fd9c6e120cad15b;p=core.git Continued: - tpzo fixed --- diff --git a/application/tests/classes/filter/tests/configuration/is_enabled/class_TestsConfigurationIsEnabledFilter.php b/application/tests/classes/filter/tests/configuration/is_enabled/class_TestsConfigurationIsEnabledFilter.php index bc4590f6..af9aada2 100644 --- a/application/tests/classes/filter/tests/configuration/is_enabled/class_TestsConfigurationIsEnabledFilter.php +++ b/application/tests/classes/filter/tests/configuration/is_enabled/class_TestsConfigurationIsEnabledFilter.php @@ -82,11 +82,11 @@ class TestsConfigurationIsEnabledFilter extends BaseTestsFilter implements Filte // Is this a boolean value? if (is_bool($configValue)) { // Issue a warning - self::createDebugInstance(__CLASS__, __LINE__)->warningMessage(sprintf('TESTS-CONFIGURATION-IS-ENABLED-FILTER: comnfigKey=%s has a boolean value[]=%s', $configKey, gettype($configValue))); + self::createDebugInstance(__CLASS__, __LINE__)->warningMessage(sprintf('TESTS-CONFIGURATION-IS-ENABLED-FILTER: configKey=%s has a boolean value[]=%s', $configKey, gettype($configValue))); $warning++; } else { // Mark as skipped - self::createDebugInstance(__CLASS__, __LINE__)->debugMessage(sprintf('TESTS-CONFIGURATION-IS-ENABLED-FILTER: comnfigKey=%s is not wanted here - SKIPPED!', $configKey)); + self::createDebugInstance(__CLASS__, __LINE__)->debugMessage(sprintf('TESTS-CONFIGURATION-IS-ENABLED-FILTER: configKey=%s is not wanted here - SKIPPED!', $configKey)); $skipped++; }