Removes new line from event printing

This commit is contained in:
luke
2021-07-30 15:34:31 +01:00
parent a7860b0b8e
commit 24b9160b79

View File

@ -168,7 +168,7 @@ final class TeamCity extends DefaultResultPrinter
*/
private function printEvent(string $eventName, array $params = []): void
{
$this->write("\n##teamcity[{$eventName}");
$this->write("##teamcity[{$eventName}");
if ($this->flowId !== 0) {
$params['flowId'] = $this->flowId;