Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Dmitriy Gordinskiy <72280830+gordinskiy@users.noreply.github.com>
  • Loading branch information
OskarStark and gordinskiy committed Oct 19, 2023
1 parent 1d986d3 commit b058fc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Component/Console/Tests/Helper/TableTest.php
Expand Up @@ -2006,7 +2006,7 @@ public function testGithubIssue52101HorizontalTrue()
->setCrossingChars('┼', '┌', '┬', '┐', '┤', '┘', '┴', '└', '├')
;

$table = (new Table($output = $this->getOutputStream(true)))
$table = (new Table($output = $this->getOutputStream()))
->setStyle($tableStyle)
->setHeaderTitle('Title')
->setHeaders(['Hello', 'World'])
Expand Down Expand Up @@ -2035,7 +2035,7 @@ public function testGithubIssue52101HorizontalFalse()
->setCrossingChars('┼', '┌', '┬', '┐', '┤', '┘', '┴', '└', '├')
;

$table = (new Table($output = $this->getOutputStream(true)))
$table = (new Table($output = $this->getOutputStream()))
->setStyle($tableStyle)
->setHeaderTitle('Title')
->setHeaders(['Hello', 'World'])
Expand Down

0 comments on commit b058fc8

Please sign in to comment.