elliotchance / concise

✅ Concise is test framework for using plain English and minimal code, built on PHPUnit.
MIT License
45 stars 3 forks source link

Progress bar can be wider than the screen #331

Closed elliotchance closed 7 years ago

elliotchance commented 8 years ago

ProportionalProgressBar.php

        $barSize = min($size * $this->total / $total, $size);
        $bar = parent::render((int)$barSize, $parts);
        $spaces = max(0, $size - substr_count($bar, ' '));