From f29c7d671afc5c4e1140bd7b9f2749e827902a1e Mon Sep 17 00:00:00 2001 From: Filippo Tessarotto Date: Fri, 20 Sep 2024 14:57:46 +0200 Subject: [PATCH] Honor `displayDetailsOnPhpunitDeprecations` config option (#894) --- src/WrapperRunner/ResultPrinter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WrapperRunner/ResultPrinter.php b/src/WrapperRunner/ResultPrinter.php index 31ce159f..fceaba66 100644 --- a/src/WrapperRunner/ResultPrinter.php +++ b/src/WrapperRunner/ResultPrinter.php @@ -199,7 +199,7 @@ public function printResults(TestResult $testResult, array $teamcityFiles, array $this->printer, true, true, - true, + $this->options->configuration->displayDetailsOnPhpunitDeprecations(), true, true, true, @@ -219,7 +219,7 @@ public function printResults(TestResult $testResult, array $teamcityFiles, array $this->printer, true, true, - true, + $this->options->configuration->displayDetailsOnPhpunitDeprecations(), false, false, false,