From 67d36f845d0df3f7e9bde7ae2fc4b94bb4b8af28 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Tue, 27 Jan 2015 20:04:23 +0000 Subject: [PATCH] Improve organiation of tax_query and meta_query unit tests. `meta_query` tests have been moved to `tests/phpunit/tests/query/metaQuery.php` and `tax_query` tests to `tests/phpunit/tests/query/taxQuery.php`. This is an improvement because (a) it better corresponds to the way that other `WP_Query` parameter tests are organized, (b) splitting meta and tax tests into separate classes simplifies the required `@group` annotations, and (c) the tests have nothing to do with posts per se, and so do not belong in the `post` subdirectory. The tests previously found at `tests/phpunit/tests/query/taxQuery.php` have been moved to `isTerm.php` in the same directory. These tests are related to the `is_*` functions that have to do with taxonomy terms, like `is_category()`. See #26999. Built from https://develop.svn.wordpress.org/trunk@31286 git-svn-id: http://core.svn.wordpress.org/trunk@31267 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 9c9e32a7fa..7f12ef9a51 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31285'; +$wp_version = '4.2-alpha-31286'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.