From 3ce2dd4131a5fc55e99c43f3355a048f948eb911 Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Tue, 25 Oct 2016 10:25:53 +0000 Subject: [PATCH] Tests: Use a minimal theme for tests. This functionality was originally added in [38858], using `symlink()` to put a link to the theme in WordPress' `themes` directory. Unfortunately, not all installs have write access to the `themes` directory, causing unit tests to fail. The new method is to add the test theme directory to `$wp_theme_directories`, and fix the handful of tests that don't expect `$wp_theme_directories` to have multiple entries. The test install/bootstrap routines now also check that `WP_DEFAULT_THEME` is defined, in case the tests are being run on a system that hasn't upgraded its' `wp-tests-config.php`. See #31550. Fixes #38457. Built from https://develop.svn.wordpress.org/trunk@38907 git-svn-id: http://core.svn.wordpress.org/trunk@38850 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 aea57de5ba..b22d13cc2f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38906'; +$wp_version = '4.7-alpha-38907'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.