From f5b64d1674906c0b22a2c4dbdb04fb962551f5f9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 6 Oct 2015 17:27:12 +0000 Subject: [PATCH] Fix typo in [34848]. See #33968. git-svn-id: https://develop.svn.wordpress.org/trunk@34872 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/includes/bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/phpunit/includes/bootstrap.php b/tests/phpunit/includes/bootstrap.php index 0beefd604a..a33c0f8897 100644 --- a/tests/phpunit/includes/bootstrap.php +++ b/tests/phpunit/includes/bootstrap.php @@ -165,10 +165,10 @@ class WP_PHPUnit_Util_Getopt extends PHPUnit_Util_Getopt { echo sprintf( 'Not running %1$s tests. To execute these, use --group %1$s.', $group_name ) . PHP_EOL; } - if ( ! isset( $skipped_groups['external-http'] ) ){ + if ( ! isset( $skipped_groups['external-http'] ) ) { echo PHP_EOL; echo 'External HTTP skipped tests can be caused by timeouts.' . PHP_EOL; - echo 'If this changeset inclues changes to HTTP, make sure there are no timeouts.' . PHP_EOL; + echo 'If this changeset includes changes to HTTP, make sure there are no timeouts.' . PHP_EOL; echo PHP_EOL; } }