Skip to content

Commit

Permalink
[BUGFIX] Add missing parameter for SystemEnvironmentBuilder::run()
Browse files Browse the repository at this point in the history
…call

Related: #577
Releases: main
  • Loading branch information
sbuerk committed Oct 15, 2024
1 parent efec0e2 commit 5787ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Core/Testbase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5787ec2

Please sign in to comment.