From 5f5978f60604dea1f11e2aa23a50967a269eb86a Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 25 Sep 2022 02:51:23 +0000 Subject: [PATCH] Coding Standards: Remove extra space in REST API plugins controller test class. This fixes a WPCS error: * `Tabs must be used to indent lines; spaces are not allowed` Follow-up to [54301]. See #56629. git-svn-id: https://develop.svn.wordpress.org/trunk@54302 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/rest-api/rest-plugins-controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/rest-api/rest-plugins-controller.php b/tests/phpunit/tests/rest-api/rest-plugins-controller.php index fee1aa0494..60b74ddd28 100644 --- a/tests/phpunit/tests/rest-api/rest-plugins-controller.php +++ b/tests/phpunit/tests/rest-api/rest-plugins-controller.php @@ -91,7 +91,7 @@ class WP_REST_Plugins_Controller_Test extends WP_Test_REST_Controller_Testcase { unlink( DIR_TESTDATA . '/link-manager.zip' ); } - if ( file_exists( WP_PLUGIN_DIR . '/link-manager/link-manager.php' ) ) { + if ( file_exists( WP_PLUGIN_DIR . '/link-manager/link-manager.php' ) ) { $this->rmdir( WP_PLUGIN_DIR . '/link-manager' ); }