Skip to content

Commit

Permalink
Closes #4962
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 21, 2022
1 parent bfbee1a commit f9b2fc9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions ChangeLog-8.5.md
Expand Up @@ -7,6 +7,7 @@ All notable changes of the PHPUnit 8.5 release series are documented in this fil
### Fixed

* [#4950](https://github.com/sebastianbergmann/phpunit/issues/4950): False error on `atMost()` invocation rule without call
* [#4962](https://github.com/sebastianbergmann/phpunit/issues/4962): Ukraine banner unreadable on white background

## [8.5.26] - 2022-04-01

Expand Down
2 changes: 1 addition & 1 deletion src/TextUI/TestRunner.php
Expand Up @@ -324,7 +324,7 @@ public function doRun(Test $suite, array $arguments = [], array $warnings = [],
'PHPUnit ' .
Version::id() .
' ' .
Color::colorize('bg-blue', '#StandWith') .
Color::colorize('bg-blue,fg-white', '#StandWith') .
Color::colorize('bg-yellow', 'Ukraine') .
"\n"
);
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/cli/options-after-arguments.phpt
Expand Up @@ -11,7 +11,7 @@ require_once __DIR__ . '/../../bootstrap.php';

PHPUnit\TextUI\Command::main();
--EXPECTF--
PHPUnit %s [44m#StandWith[0m[43mUkraine[0m
PHPUnit %s [44;37m#StandWith[0m[43mUkraine[0m

... 3 / 3 (100%)

Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/logging/_files/raw_output_ColorTest.txt
@@ -1,4 +1,4 @@
PHPUnit %s #StandWithUkraine
PHPUnit %s #StandWithUkraine

Runtime: %s

Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/logging/_files/raw_output_StatusTest.txt
@@ -1,4 +1,4 @@
PHPUnit %s #StandWithUkraine
PHPUnit %s #StandWithUkraine

Runtime: %s
Configuration: %sconfiguration.basic.xml
Expand Down

0 comments on commit f9b2fc9

Please sign in to comment.