Build/Test Tools: Remove more unnecessary test skipping when erroneous situations occur.

See #40533


git-svn-id: https://develop.svn.wordpress.org/trunk@40544 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
John Blackbourn
2017-04-23 22:11:52 +00:00
parent 64f8351da1
commit a16ada6d31
4 changed files with 5 additions and 7 deletions

View File

@@ -507,7 +507,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->markTestSkipped( 'procedure could not be created (missing privileges?)' );
$this->fail( 'procedure could not be created (missing privileges?)' );
}
$post_id = self::factory()->post->create();