From 2e56bb91a815c5c29674930c234bd68c9a41ce5c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 26 Sep 2020 03:14:07 +0000 Subject: [PATCH] Tests: Correct assertion in `WP_Test_REST_Comments_Controller::check_comment_data()`. `author_avatar_urls` should be present in the comment data array keys, not values. The test only passed accidentally due to `assertContains()` not performing a strict type check. See #38266, #50913. Built from https://develop.svn.wordpress.org/trunk@49051 git-svn-id: http://core.svn.wordpress.org/trunk@48813 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 aad6c87667..194cd56c7f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-49050'; +$wp_version = '5.6-alpha-49051'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.