We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 70578e5 + 2e1a628 commit 08f9e58Copy full SHA for 08f9e58
src/Symfony/Component/Console/Tests/Helper/ProgressBarTest.php
@@ -112,8 +112,10 @@ public function testRegularTimeEstimation()
112
113
public function testRegularTimeRemainingWithDifferentStartAtAndCustomDisplay()
114
{
115
+ $this->expectNotToPerformAssertions();
116
+
117
ProgressBar::setFormatDefinition('custom', ' %current%/%max% [%bar%] %percent:3s%% %remaining% %estimated%');
- $bar = new ProgressBar($output = $this->getOutputStream(), 1_200, 0);
118
+ $bar = new ProgressBar($this->getOutputStream(), 1_200, 0);
119
$bar->setFormat('custom');
120
$bar->start(1_200, 600);
121
}
0 commit comments