From 5bde3fbd1f0891a3c637b4308ce10bff65f3308a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 23 Jun 2024 11:40:14 +0000 Subject: [PATCH] Tests: Use `assertSame()` in `wp_get_block_css_selector()` tests. This ensures that not only the return values match the expected results, but also that their type is the same. Going forward, stricter type checking by using `assertSame()` should generally be preferred to `assertEquals()` where appropriate, to make the tests more reliable. Follow-up to [56058]. See #60705. Built from https://develop.svn.wordpress.org/trunk@58462 git-svn-id: http://core.svn.wordpress.org/trunk@57911 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 d8b61c4751..84ce8ee118 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-beta3-58461'; +$wp_version = '6.6-beta3-58462'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.