From 1fb24d9e8d85ef241f5700d155f71cf7f2e7ae9a Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Mon, 29 Feb 2016 22:40:20 +0000 Subject: [PATCH] Remove erroneous `return` in `date_query` test. Introduced in [34989]. See #36016. git-svn-id: https://develop.svn.wordpress.org/trunk@36789 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/query/dateQuery.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/phpunit/tests/query/dateQuery.php b/tests/phpunit/tests/query/dateQuery.php index f40302d81c..4af981c860 100644 --- a/tests/phpunit/tests/query/dateQuery.php +++ b/tests/phpunit/tests/query/dateQuery.php @@ -672,7 +672,6 @@ class Tests_Query_DateQuery extends WP_UnitTestCase { * @ticket 34228 */ public function test_date_query_hour_should_not_ignore_0() { - return; $p1 = self::factory()->post->create( array( 'post_date' => '2014-10-21 00:42:29', ) ); $p2 = self::factory()->post->create( array( 'post_date' => '2014-10-21 01:42:29', ) );