Tests: Make the message for skipping some tests with an external object cache more consistent.

Follow-up to [33702], [34767], [49857], [53821].

See #56793.

git-svn-id: https://develop.svn.wordpress.org/trunk@54668 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2022-10-23 12:36:58 +00:00
parent 2652d2eb25
commit a5463b4500
2 changed files with 2 additions and 2 deletions

View File

@ -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.' );
}
}

View File

@ -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.' );
}
}