From afb3ee8c5df1d773adb05953613801a7191a7b07 Mon Sep 17 00:00:00 2001 From: Anthony Burchell Date: Tue, 2 Feb 2021 19:59:51 +0000 Subject: [PATCH] Coding Standards: Fix spacing in `test_pending_status_with_false_send_confirmation_email` test. Follow-up to [50159] adjusts alignment of the `$request_data` value. See #43890. git-svn-id: https://develop.svn.wordpress.org/trunk@50160 602fd350-edb4-49c9-b593-d223f7449a82 --- tests/phpunit/tests/privacy/wpCreateUserRequest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/tests/privacy/wpCreateUserRequest.php b/tests/phpunit/tests/privacy/wpCreateUserRequest.php index 4ae97a3c4e..36d055852a 100644 --- a/tests/phpunit/tests/privacy/wpCreateUserRequest.php +++ b/tests/phpunit/tests/privacy/wpCreateUserRequest.php @@ -342,7 +342,7 @@ class Tests_WpCreateUserRequest extends WP_UnitTestCase { * @ticket 43890 */ public function test_pending_status_with_false_send_confirmation_email() { - $request_data = array(); + $request_data = array(); $send_confirmation_email = false; $actual = wp_create_user_request( self::$non_registered_user_email, 'export_personal_data', $request_data, $send_confirmation_email );