Fixes coverage size

This commit is contained in:
Nuno Maduro
2022-09-25 11:38:25 +01:00
parent 12618ff8b3
commit 6bad9d302b

View File

@ -85,7 +85,7 @@ final class Coverage
$totalWidth = (new Terminal())->getWidth();
$dottedLineLength = $totalWidth <= 70 ? $totalWidth : 70;
$dottedLineLength = $totalWidth - 6;
$totalCoverage = $codeCoverage->getReport()->percentageOfExecutedLines();