From 8d80a25d43452c60c97f0e6b98d068d855544428 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 30 Jul 2024 13:35:15 +0200 Subject: [PATCH] [BUGFIX] Remove unavailable PHPUnit configuration option (#1395) The PHPUnit configuration option `controlGarbageCollector` was introduced for PHPUnit 10 and 11 only and hence is not available for version 9 yet (the version we're using). So we cannot use this configuration option yet. This reverts commit 7dea2ddc0beda039c4a7b4944dc1833e097d0a4b. --- Build/phpunit/FunctionalTests.xml | 1 - Build/phpunit/UnitTests.xml | 1 - 2 files changed, 2 deletions(-) diff --git a/Build/phpunit/FunctionalTests.xml b/Build/phpunit/FunctionalTests.xml index de96bf7..f2da77f 100644 --- a/Build/phpunit/FunctionalTests.xml +++ b/Build/phpunit/FunctionalTests.xml @@ -7,7 +7,6 @@ bootstrap="../../.Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php" cacheResult="false" colors="true" - controlGarbageCollector="true" convertDeprecationsToExceptions="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" diff --git a/Build/phpunit/UnitTests.xml b/Build/phpunit/UnitTests.xml index 9f301d0..7300036 100644 --- a/Build/phpunit/UnitTests.xml +++ b/Build/phpunit/UnitTests.xml @@ -5,7 +5,6 @@ beStrictAboutTestsThatDoNotTestAnything="false" cacheResult="false" colors="true" - controlGarbageCollector="true" convertDeprecationsToExceptions="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true"