Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jackbentley committed Mar 22, 2023
1 parent 6a97cb3 commit f8ee7e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/IO/GitHubActionsIO.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ class GitHubActionsIO extends ConsoleIO
{
public function startGroup(string $title): void
{
$this->write('::group::' . $title);
$this->write(['::group::' . $title]);
parent::startGroup($title);
}

public function endGroup(): void
{
parent::endGroup();
$this->write('::endgroup::');
$this->write(['::endgroup::']);
}
}

0 comments on commit f8ee7e9

Please sign in to comment.