From 977c5f85e3c7b613bd11c05292f3e7e5603d2509 Mon Sep 17 00:00:00 2001 From: James Nylen Date: Wed, 29 Mar 2017 17:06:44 +0000 Subject: [PATCH] Tests: Remove a couple of invalid error assertions. A couple of REST API tests had an assertion `assertNotInstanceOf( 'WP_Error', $response );` which will never be true. Since these assertions are invalid, and also made redundant by the response status check, we can just remove them. Props dlh. Fixes #40270. Built from https://develop.svn.wordpress.org/trunk@40350 git-svn-id: http://core.svn.wordpress.org/trunk@40257 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 8cdcb2c025..6c8ebbaf1a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40349'; +$wp_version = '4.8-alpha-40350'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.