From fa4497419057fe9b5ab50885fcf63b4b75aaea59 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 22 Jul 2021 17:15:57 +0000 Subject: [PATCH] Tests: Add a `$message` parameter for custom assertions in `WP_UnitTestCase_Base`. All assertions in PHPUnit have a `$message` parameter. Setting this parameter allows to distinguish which assertion is failing when a test runs multiple assertions, making debugging of the tests easier. This optional parameter is now added for the assertion methods in the `WP_UnitTestCase_Base` class that were missing it. Props jrf. See #53363. Built from https://develop.svn.wordpress.org/trunk@51478 git-svn-id: http://core.svn.wordpress.org/trunk@51089 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 ca06c36ed7..aa7192f8ec 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51477'; +$wp_version = '5.9-alpha-51478'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.