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
This commit is contained in:
Sergey Biryukov 2022-09-25 02:51:23 +00:00
parent 3574efb146
commit 5f5978f606

View File

@ -91,7 +91,7 @@ class WP_REST_Plugins_Controller_Test extends WP_Test_REST_Controller_Testcase {
unlink( DIR_TESTDATA . '/link-manager.zip' ); 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' ); $this->rmdir( WP_PLUGIN_DIR . '/link-manager' );
} }