Skip to content

Commit 722fa7c

Browse files
committed
Merge branch '6.4' into 7.2
* 6.4: fix risky test that doesn't perform any assertions
2 parents 13189ef + 799445d commit 722fa7c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Tests/Helper/ProgressBarTest.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,10 @@ public function testRegularTimeEstimation()
112112

113113
public function testRegularTimeRemainingWithDifferentStartAtAndCustomDisplay()
114114
{
115+
$this->expectNotToPerformAssertions();
116+
115117
ProgressBar::setFormatDefinition('custom', ' %current%/%max% [%bar%] %percent:3s%% %remaining% %estimated%');
116-
$bar = new ProgressBar($output = $this->getOutputStream(), 1_200, 0);
118+
$bar = new ProgressBar($this->getOutputStream(), 1_200, 0);
117119
$bar->setFormat('custom');
118120
$bar->start(1_200, 600);
119121
}

0 commit comments

Comments
 (0)