Skip to content

Commit 9e07a48

Browse files
Build/Test Tools: Remove Unicode character from PHPUnit version check message.
Not all CLI tools can handle Unicode characters or non-system specific line endings well, so this type of CLI messaging should always be written with the optimal cross-platform, cross-CLI tool end-user experience in mind. Follow-up to [51581]. Props jrf. See #53363. git-svn-id: https://develop.svn.wordpress.org/trunk@51584 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 40bbe55 commit 9e07a48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/phpunit/includes/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
if ( version_compare( $phpunit_version, '5.7.21', '<' ) ) {
4141
printf(
42-
'Error: Looks like youre using PHPUnit %s. WordPress requires at least PHPUnit 5.7.21.' . PHP_EOL,
42+
"Error: Looks like you're using PHPUnit %s. WordPress requires at least PHPUnit 5.7.21." . PHP_EOL,
4343
$phpunit_version
4444
);
4545
echo 'Please use the latest PHPUnit version supported for the PHP version you are running the tests on.' . PHP_EOL;

0 commit comments

Comments
 (0)