diff --git a/tests/phpunit/tests/multisite/siteMeta.php b/tests/phpunit/tests/multisite/siteMeta.php index e7625b09d9..8ea6cddeeb 100644 --- a/tests/phpunit/tests/multisite/siteMeta.php +++ b/tests/phpunit/tests/multisite/siteMeta.php @@ -166,7 +166,7 @@ if ( is_multisite() ) : public function test_update_should_return_true_when_updating_existing_value_for_key() { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } add_site_meta( self::$site_id, 'foo', 'bar' ); @@ -180,7 +180,7 @@ if ( is_multisite() ) : public function test_delete_by_key() { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } add_site_meta( self::$site_id, 'unique_delete_by_key', 'value', true ); @@ -197,7 +197,7 @@ if ( is_multisite() ) : public function test_site_meta_should_be_deleted_when_site_is_deleted() { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } $site_id = self::factory()->blog->create( @@ -223,7 +223,7 @@ if ( is_multisite() ) : global $wpdb; if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } update_site_meta( self::$site_id, 'foo', 'bar' ); @@ -238,7 +238,7 @@ if ( is_multisite() ) : global $wpdb; if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } update_site_meta( self::$site_id, 'foo', 'bar' ); @@ -259,7 +259,7 @@ if ( is_multisite() ) : global $wpdb; if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } update_site_meta( self::$site_id, 'foo', 'bar' ); @@ -281,7 +281,7 @@ if ( is_multisite() ) : */ public function test_add_site_meta_should_bust_get_sites_cache() { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } add_site_meta( self::$site_id, 'foo', 'bar' ); @@ -323,7 +323,7 @@ if ( is_multisite() ) : */ public function test_update_site_meta_should_bust_get_sites_cache() { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } add_site_meta( self::$site_id, 'foo', 'bar' ); @@ -366,7 +366,7 @@ if ( is_multisite() ) : */ public function test_delete_site_meta_should_bust_get_sites_cache() { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } add_site_meta( self::$site_id, 'foo', 'bar' ); diff --git a/tests/phpunit/tests/multisite/siteQuery.php b/tests/phpunit/tests/multisite/siteQuery.php index 7d46519ac6..0cd74f8559 100644 --- a/tests/phpunit/tests/multisite/siteQuery.php +++ b/tests/phpunit/tests/multisite/siteQuery.php @@ -883,7 +883,7 @@ if ( is_multisite() ) : */ public function test_wp_site_query_meta_query( $query, $expected, $strict ) { if ( ! is_site_meta_supported() ) { - $this->markTestSkipped( 'Tests only runs with the blogmeta database table installed.' ); + $this->markTestSkipped( 'Test only runs with the blogmeta database table installed.' ); } add_site_meta( self::$site_ids['wordpress.org/'], 'foo', 'foo' );