From 0dd3e7e33edd054caccbea412fea757481aed84f Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Mon, 7 Oct 2019 22:19:03 +0000 Subject: [PATCH] Pings/Trackbacks: Remove a failing test that won't pass as long as `WP_IMPORTING` gets set during tests. The `_publish_post_hook()` function checks for `WP_IMPORTING` before setting meta fields fir enclosures and pings, which means this test is doomed to fail. The test can be re-implemented if the `WP_IMPORTING` constant gets moved to a function similar to how `wp_installing()` works for the `WP_INSTALLING` constant. See #48014 Built from https://develop.svn.wordpress.org/trunk@46428 git-svn-id: http://core.svn.wordpress.org/trunk@46226 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 355971a6d1..8547b70c24 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta2-46427'; +$wp_version = '5.3-beta2-46428'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.