From 9646cd2a77489d7b320e96cb8c6953cac698fd67 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 28 Jul 2022 22:38:13 +0000 Subject: [PATCH] Tests: Simplify some assertions in `Tests_Media`. A number of assertions are checking for the number of times a hard-coded substring existed in a larger `$haystack`. These assertions were using `preg_match_all()` to do so, but without actually using a regex. In these cases, it is more performant (and simpler) to use the PHP native `substr_count()` function, which will yield the same result, without the overhead of regex parsing. Reference: [https://www.php.net/manual/en/function.substr-count.php PHP Manual: substr_count()] Follow-up to [711/tests], [38838], [42694], [53558]. Props jrf. See #55652. Built from https://develop.svn.wordpress.org/trunk@53790 git-svn-id: http://core.svn.wordpress.org/trunk@53349 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 1f8a8d239a..1f94011151 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-53789'; +$wp_version = '6.1-alpha-53790'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.