8000 Fix failing test for https://github.com/symfony/symfony/pull/19134 by rquadling · Pull Request #19135 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Fix failing test for https://github.com/symfony/symfony/pull/19134 #19135

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

Closed
wants to merge 1 commit into from
Closed
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
Fix failing test for #19134
With the changes made by #19134, the `\Symfony\Component\Console\Tests\Helper\ProgressBarTest::testMultipleStart()` test fails.

This patch fixes the test for #19134.
  • Loading branch information
rquadling authored Jun 21, 2016
commit b7a66fde71b01d5547837e6012b993b04365a1d3
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function testMultipleStart()

rewind($output->getStream());
$this->assertEquals(
$this->generateOutput(' 0 [>---------------------------]').
' 0 [>---------------------------]'.
$this->generateOutput(' 1 [->--------------------------]').
$this->generateOutput(' 0 [>---------------------------]'),
stream_get_contents($output->getStream())
Expand Down
0