Skip to content

Commit 24c2f3f

Browse files
Coding Standards: Correct alignment in _wp_privacy_settings_filter_draft_page_titles() tests.
This resolves a WPCS warning: {{{ Array double arrow not aligned correctly }}} Follow-up to [62345]. Props peterwilsoncc. See #65202. git-svn-id: https://develop.svn.wordpress.org/trunk@62346 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 837773c commit 24c2f3f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/phpunit/tests/admin/includes/misc/WpPrivacySettingsFilterDraftPageTitles_Test.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function test_wp_privacy_settings_filter_draft_page_titles( $expected, $t
4242
*/
4343
public function data_wp_privacy_settings_filter_draft_page_titles(): array {
4444
return array(
45-
'draft page on privacy screen' => array(
45+
'draft page on privacy screen' => array(
4646
'expected' => 'Privacy Policy (Draft)',
4747
'title' => 'Privacy Policy',
4848
'post_status' => 'draft',
@@ -54,13 +54,13 @@ public function data_wp_privacy_settings_filter_draft_page_titles(): array {
5454
'post_status' => 'publish',
5555
'screen_id' => 'privacy',
5656
),
57-
'draft page on other screen' => array(
57+
'draft page on other screen' => array(
5858
'expected' => 'About Us',
5959
'title' => 'About Us',
6060
'post_status' => 'draft',
6161
'screen_id' => 'edit-page',
6262
),
63-
'pending page on privacy screen' => array(
63+
'pending page on privacy screen' => array(
6464
'expected' => 'Privacy Policy',
6565
'title' => 'Privacy Policy',
6666
'post_status' => 'pending',

0 commit comments

Comments
 (0)