From 21b22c0fb67db7d8dc6bdbb877176b851adaa33f Mon Sep 17 00:00:00 2001 From: Ryan McCue Date: Wed, 24 Feb 2016 08:29:26 +0000 Subject: [PATCH] REST API: Fix error in Request tests. On the 21st of November, 2014, I committed tests for WP_REST_Request to the API plugin. Although I didn't realise at the time, I was causing my future self to go through hours of sufferring. Unfortunately, I forgot to call parent::setUp() which would break the tests in subtle ways in the future and would ruin the good part of my day. Let this be a warning to all of you who write future unit tests. See https://github.com/WP-API/WP-API/commit/f0396be17e1dd312065a2382e4e8a1361c1eb634 for the original commit. Built from https://develop.svn.wordpress.org/trunk@36678 git-svn-id: http://core.svn.wordpress.org/trunk@36645 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 b16c4c38c9..250db692b7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36677'; +$wp_version = '4.5-alpha-36678'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.