From 7764297d7b41ae2ffd92a17e1fa04e2ebac4e415 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Tue, 6 Oct 2015 03:40:46 +0000 Subject: [PATCH] Fix whitespace issues introduced in [34848] Bad Jorbin. See #33968 git-svn-id: https://develop.svn.wordpress.org/trunk@34849 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/http/base.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/tests/http/base.php b/tests/phpunit/tests/http/base.php index 337a74b50e..096f4e81df 100644 --- a/tests/phpunit/tests/http/base.php +++ b/tests/phpunit/tests/http/base.php @@ -219,7 +219,7 @@ abstract class WP_HTTP_UnitTestCase extends WP_UnitTestCase { unlink( $res['filename'] ); } - $this->skipTestOnTimeout ($res ); + $this->skipTestOnTimeout( $res ); $this->assertNotWPError( $res ); $this->assertEquals( '', $res['body'] ); // The body should be empty. @@ -242,7 +242,7 @@ abstract class WP_HTTP_UnitTestCase extends WP_UnitTestCase { unlink( $res['filename'] ); } - $this->skipTestOnTimeout ($res ); + $this->skipTestOnTimeout( $res ); $this->assertNotWPError( $res ); $this->assertEquals( $size, $filesize ); // Check that the file is written to disk correctly without any extra characters @@ -260,7 +260,7 @@ abstract class WP_HTTP_UnitTestCase extends WP_UnitTestCase { $res = wp_remote_request( $url, array( 'timeout' => 30, 'limit_response_size' => $size ) ); - $this->skipTestOnTimeout ($res ); + $this->skipTestOnTimeout( $res ); $this->assertNotWPError( $res ); $this->assertEquals( $size, strlen( $res['body'] ) );