diff --git a/tests/phpunit/tests/option/siteTransient.php b/tests/phpunit/tests/option/siteTransient.php index 774fc4a20a..4c9c9a15b7 100644 --- a/tests/phpunit/tests/option/siteTransient.php +++ b/tests/phpunit/tests/option/siteTransient.php @@ -9,7 +9,7 @@ class Tests_Option_SiteTransient extends WP_UnitTestCase { parent::set_up(); if ( wp_using_ext_object_cache() ) { - $this->markTestSkipped( 'Not testable with an external object cache.' ); + $this->markTestSkipped( 'This test requires that an external object cache is not in use.' ); } } diff --git a/tests/phpunit/tests/option/transient.php b/tests/phpunit/tests/option/transient.php index cf10eaed1b..6c6ba4e2da 100644 --- a/tests/phpunit/tests/option/transient.php +++ b/tests/phpunit/tests/option/transient.php @@ -9,7 +9,7 @@ class Tests_Option_Transient extends WP_UnitTestCase { parent::set_up(); if ( wp_using_ext_object_cache() ) { - $this->markTestSkipped( 'Not testable with an external object cache.' ); + $this->markTestSkipped( 'This test requires that an external object cache is not in use.' ); } }