From 5787ec240dc634665e09fca500f307828dee07f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= Date: Tue, 15 Oct 2024 10:23:44 +0200 Subject: [PATCH] [BUGFIX] Add missing parameter for `SystemEnvironmentBuilder::run()` call Related: #577 Releases: main --- Classes/Core/Testbase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Core/Testbase.php b/Classes/Core/Testbase.php index 833f6217..cafd2a5f 100644 --- a/Classes/Core/Testbase.php +++ b/Classes/Core/Testbase.php @@ -699,7 +699,7 @@ public function setUpBasicTypo3Bootstrap(string $instancePath): ContainerInterfa GeneralUtility::purgeInstances(); $classLoader = require $this->getPackagesPath() . '/autoload.php'; - SystemEnvironmentBuilder::run(0, SystemEnvironmentBuilder::REQUESTTYPE_CLI); + SystemEnvironmentBuilder::run(0, SystemEnvironmentBuilder::REQUESTTYPE_CLI, false); $container = Bootstrap::init($classLoader); // Make sure output is not buffered, so command-line output can take place and // phpunit does not whine about changed output bufferings in tests.