From 6cb9583d5d6051d92597b15e5388296a360fbb51 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 22 May 2024 15:41:11 +0000 Subject: [PATCH] Tests: Use `assertSame()` in navigation fallback 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 [56052]. See #60705. Built from https://develop.svn.wordpress.org/trunk@58183 git-svn-id: http://core.svn.wordpress.org/trunk@57646 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 af7e77507c..f67ca4c8a2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.6-alpha-58182'; +$wp_version = '6.6-alpha-58183'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.