From bcdad0aa123464749fe1054869a6e106df6a38a2 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Thu, 15 Oct 2015 20:35:23 +0000 Subject: [PATCH] Tests: Don't preserve the global state for Ajax tests when using an external object cache. Most of the Ajax tests are running in a separate PHP process, and thus PHPUnit attempts to preserve the global state from the parent process by serializing all globals. But this doesn't work for external object caches so we have to disable this "feature". See #31491. Built from https://develop.svn.wordpress.org/trunk@35209 git-svn-id: http://core.svn.wordpress.org/trunk@35175 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 8d2a709ac0..07e02d2244 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35208'; +$wp_version = '4.4-alpha-35209'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.