8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caa1be7 commit 4cca70bCopy full SHA for 4cca70b
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