diff --git a/src/Logging/TeamCity.php b/src/Logging/TeamCity.php index 494aa8c8..a8713172 100644 --- a/src/Logging/TeamCity.php +++ b/src/Logging/TeamCity.php @@ -122,6 +122,8 @@ final class TeamCity extends DefaultResultPrinter $this->writeWithColor('fg-white, bold', ' ' . $suite->getName()); } + $this->writeNewLine(); + $this->flowId = (int) getmypid(); if (!$this->isSummaryTestCountPrinted) { @@ -255,6 +257,8 @@ final class TeamCity extends DefaultResultPrinter $this->writePestTestOutput($test->getName(), 'fg-green, bold', '✓'); } + $this->writeNewLine(); + if ($test instanceof TestCase) { $this->numAssertions += $test->getNumAssertions(); } elseif ($test instanceof PhptTestCase) {