From 75c2005a49350a22cc79940f7325863cb9696bae Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Tue, 8 Mar 2016 16:45:27 +0000 Subject: [PATCH] Tests: Remove `test_new_files_are_not_in_old_files_array()` from [36843]. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The test assumes that if a CSS file was added to `$_old_files` all three files (.css, .min.css, -rtl.min.css; it's actually missing the fourth case, -rtl.css) don't exist anymore. But this isn't always the case. The test is also incredible slow because it does three `file_exists()` checks for each file — the global contains 646 files currently. It's important what we have in the /build directory and that's covered by `test_new_files_are_not_in_old_files_array_compiled()`. Fixes #36083. Built from https://develop.svn.wordpress.org/trunk@36885 git-svn-id: http://core.svn.wordpress.org/trunk@36852 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 41ec1e6257..3217150ddd 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta2-36884'; +$wp_version = '4.5-beta2-36885'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.