From b7f9555444a1259d7557aeeb9dabbe3b8a0982c4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 31 Jul 2015 13:02:24 +0000 Subject: [PATCH] Customizer: Fix failing tests on PHP 5.2 after [33488]. `assertNotFalse()` is not included in PHPUnit 3.6.12, use `assertInternalType( 'int' )` instead. fixes #32814. Built from https://develop.svn.wordpress.org/trunk@33526 git-svn-id: http://core.svn.wordpress.org/trunk@33493 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 63dacaf852..4ea042d8f2 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-RC1-33519'; +$wp_version = '4.3-RC1-33526'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.