From 79884a72d4c7539b892de635b69e4db69ebf8cce Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 29 Nov 2021 08:47:05 +0000 Subject: [PATCH] Tests: Replace `assertEquals()` with `assertSame()` in block template 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()`, `assertSameSets()`, or `assertSameSetsWithIndex()` should generally be preferred, to make the tests more reliable. Follow-up to [51003], [51079], [52062], [52265]. See #53364, #53363, #54335. Built from https://develop.svn.wordpress.org/trunk@52266 git-svn-id: http://core.svn.wordpress.org/trunk@51858 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 29e9857588..d5fcfd1943 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52265'; +$wp_version = '5.9-alpha-52266'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.