From 1b25f7ab0c3a5cdf3d462efe2899415cbf1ab53c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 7 Aug 2021 14:20:01 +0000 Subject: [PATCH] Tests: Use more appropriate assertions in `get_themes()` tests. This replaces instances of `assertTrue( is_dir( ... ) )` with `assertDirectoryExists()` to use native PHPUnit functionality. The `assertDirectoryExists()` method was introduced in PHPUnit 5.6. As the minimum supported PHPUnit version has been raised to PHPUnit 5.7.21, it can now be used. Follow-up to [51543], [51574], [51579]. Props jrf. See #53363. Built from https://develop.svn.wordpress.org/trunk@51580 git-svn-id: http://core.svn.wordpress.org/trunk@51191 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 0d5cbb0368..7a133ef1f1 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51579'; +$wp_version = '5.9-alpha-51580'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.