From c7a2e68941ac7a73086052a0befa0746f417662b Mon Sep 17 00:00:00 2001 From: luke Date: Tue, 10 Aug 2021 14:57:36 +0100 Subject: [PATCH] Fixes a problem with the PhpUnit logger --- src/Logging/TeamCity.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logging/TeamCity.php b/src/Logging/TeamCity.php index a9363b43..bfd732fb 100644 --- a/src/Logging/TeamCity.php +++ b/src/Logging/TeamCity.php @@ -286,7 +286,7 @@ final class TeamCity extends DefaultResultPrinter { $this->markAsFailure($t); $this->writeWarning($test->getName()); - $this->phpunitTeamCity->addSkippedTest($test, $t, $time); + $this->phpunitTeamCity->printIgnoredTest($test->getName(), $t, $time); } private function markAsFailure(Throwable $t): void