From ced4ef214471578da281ceb726680c8030c2b16e Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Wed, 18 May 2016 17:14:29 +0000 Subject: [PATCH] Correct usage of @Covers for Tests_Post_Types When @covers is used with a plain alphanumeric string, PHPUnit assumes that it is covering a class. If there is no class, it fails and exits rather than continuing to generate coverage. To cover a global function, the name must start with ::. See https://phpunit.de/manual/5.3/en/appendixes.annotations.html#appendixes.annotations.covers Introduced in [36768]. Fixes #36867. See #35985 Built from https://develop.svn.wordpress.org/trunk@37459 git-svn-id: http://core.svn.wordpress.org/trunk@37427 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 8d8ab3cc8d..fb727acded 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37458'; +$wp_version = '4.6-alpha-37459'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.