We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13189ef + 799445d commit 722fa7cCopy full SHA for 722fa7c
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