From 2996135155fd7ae282f43d9745cb5a8796b995af Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 30 Jul 2021 12:38:13 +0100 Subject: [PATCH] Output improvements. --- 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 64136345..bcabf1e7 100644 --- a/src/Logging/TeamCity.php +++ b/src/Logging/TeamCity.php @@ -118,7 +118,7 @@ final class TeamCity extends DefaultResultPrinter { if (static::isPestTestSuite($suite)) { $this->writeWithColor('fg-white, bold', ' '.substr_replace($suite->getName(), '', 0, 2).' '); - } else { + } elseif ($suite->count() === 1) { $this->writeWithColor('fg-white, bold', ' '.$suite->getName()); }