From 46472cc493b8615df5cadcbe70d53a3a9a57f512 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 1 Sep 2022 18:59:09 +0000 Subject: [PATCH] Tests: Correct the `@covers` tag in a `WP_REST_URL_Details_Controller` test for registered route. This addresses a notice when generating the code coverage report: {{{ "@covers WP_REST_URL_Details_Controller::get_routes" is invalid }}} The `WP_REST_URL_Details_Controller` class does not have a `get_routes()` method, `WP_REST_Server` does. Follow-up to [51973]. See #55652. Built from https://develop.svn.wordpress.org/trunk@54056 git-svn-id: http://core.svn.wordpress.org/trunk@53615 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 f8589dfd85..4f896576ee 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.1-alpha-54055'; +$wp_version = '6.1-alpha-54056'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.