Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sebastianbergmann/phpunit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.6.8
Choose a base ref
...
head repository: sebastianbergmann/phpunit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.6.9
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 28, 2015

  1. Closes #1731

    sebastianbergmann committed May 28, 2015
    Copy the full SHA
    dc2dfac View commit details

Commits on May 29, 2015

  1. Prepare release

    sebastianbergmann committed May 29, 2015
    Copy the full SHA
    816d125 View commit details
Showing with 6 additions and 2 deletions.
  1. +4 −0 ChangeLog-4.6.md
  2. +1 −1 src/Runner/Version.php
  3. +1 −1 src/TextUI/ResultPrinter.php
4 changes: 4 additions & 0 deletions ChangeLog-4.6.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes in PHPUnit 4.6

## PHPUnit 4.6.9

* Fixed [#1731](https://github.com/sebastianbergmann/phpunit/issues/1731): `.` after failure count has no background color when `--colors` is used

## PHPUnit 4.6.8

* New PHAR release due to updated dependencies
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ public static function id()
}

if (self::$version === null) {
$version = new SebastianBergmann\Version('4.6.8', dirname(dirname(__DIR__)));
$version = new SebastianBergmann\Version('4.6.9', dirname(dirname(__DIR__)));
self::$version = $version->getVersion();
}

2 changes: 1 addition & 1 deletion src/TextUI/ResultPrinter.php
Original file line number Diff line number Diff line change
@@ -367,7 +367,7 @@ protected function printFooter(PHPUnit_Framework_TestResult $result)
$this->writeCountString($result->skippedCount(), 'Skipped', $color);
$this->writeCountString($result->notImplementedCount(), 'Incomplete', $color);
$this->writeCountString($result->riskyCount(), 'Risky', $color);
$this->write(".\n");
$this->writeWithColor($color, '.', true);
}
}