Skip to content

Commit

Permalink
We do not need the result collected from events here
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jul 30, 2024
1 parent 8f432cf commit 9399322
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TextUI/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -484,11 +484,11 @@ private function executeCommandsThatRequireCliConfigurationAndTestSuite(CliConfi
private function executeCommandsThatRequireCompleteConfiguration(Configuration $configuration, CliConfiguration $cliConfiguration): void
{
if ($cliConfiguration->listSuites()) {
$this->execute(new ListTestSuitesCommand($configuration->testSuite()), true);
$this->execute(new ListTestSuitesCommand($configuration->testSuite()));
}

if ($cliConfiguration->warmCoverageCache()) {
$this->execute(new WarmCodeCoverageCacheCommand($configuration, CodeCoverageFilterRegistry::instance()), true);
$this->execute(new WarmCodeCoverageCacheCommand($configuration, CodeCoverageFilterRegistry::instance()));
}
}

Expand Down

0 comments on commit 9399322

Please sign in to comment.