8000 [Console] Fix typo in tests by ro0NL · Pull Request #28450 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Console] Fix typo in tests #28450

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Console] Fix typo in tests
  • Loading branch information
ro0NL authored Sep 11, 2018
commit 01e491ec866781afd222419a69f5bdd8a7d37fc7
4 changes: 2 additions & 2 deletions src/Symfony/Component/Console/Tests/Helper/TableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ public function testThrowsWhenTheCellInAnArray()
$table->render();
}

public function testColumnWith()
public function testColumnWidth()
{
$table = new Table($output = $this->getOutputStream());
$table
Expand Down Expand Up @@ -774,7 +774,7 @@ public function testColumnWith()
$this->assertEquals($expected, $this->getOutputContent($output));
}

public function testColumnWiths()
public function testColumnWidths()
{
$table = new Table($output = $this->getOutputStream());
$table
Expand Down
0