]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 21 Aug 2025 20:33:13 +0000 (22:33 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 21 Aug 2025 20:33:13 +0000 (22:33 +0200)
- tpzo fixed

application/tests/classes/filter/tests/configuration/is_enabled/class_TestsConfigurationIsEnabledFilter.php

index bc4590f66af1e839270f3c55f21b5ae3afcd9db5..af9aada25697b1c9f0b3ac0c5fa14a56a1dee9ab 100644 (file)
@@ -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++;
                                }