Tests: Use consistent trailing punctuation in fail() messages.

See #51344.

git-svn-id: https://develop.svn.wordpress.org/trunk@49033 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2020-09-22 12:32:39 +00:00
parent a9ee47c806
commit 303deffe91
5 changed files with 7 additions and 7 deletions

View File

@@ -730,7 +730,7 @@ class Tests_DB extends WP_UnitTestCase {
if ( count( $wpdb->get_results( 'SHOW CREATE PROCEDURE `test_mysqli_flush_sync_procedure`' ) ) < 1 ) {
$wpdb->suppress_errors( $suppress );
$this->fail( 'procedure could not be created (missing privileges?)' );
$this->fail( 'Procedure could not be created (missing privileges?)' );
}
$post_id = self::factory()->post->create();