Skip to content

Commit

Permalink
Coding Standards: Minor fixes following [49830].
Browse files Browse the repository at this point in the history
Fixes the fixes missed in [49832]. They are fixed now.

See #13509, #48968, #48556.


git-svn-id: https://develop.svn.wordpress.org/trunk@49833 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
peterwilsoncc committed Dec 18, 2020
1 parent 1930427 commit c0f76fa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/phpunit/tests/query/postStatus.php
Expand Up @@ -469,9 +469,9 @@ public function test_non_singular_queries_using_post_type_any_should_respect_pos
'wptests_pt1',
array(
'exclude_from_search' => false,
'capabilities' => [
'capabilities' => array(
'read_private_posts' => 'read_private_pt1s',
],
),
)
);

Expand Down Expand Up @@ -549,9 +549,9 @@ public function test_non_singular_queries_using_multiple_post_type_should_respec
'wptests_pt1',
array(
'exclude_from_search' => false,
'capabilities' => [
'capabilities' => array(
'read_private_posts' => 'read_private_pt1s',
],
),
)
);

Expand Down Expand Up @@ -611,7 +611,7 @@ public function test_non_singular_queries_using_multiple_post_type_should_respec

$q = new WP_Query(
array(
'post_type' => [ 'wptests_pt1', 'wptests_pt2' ],
'post_type' => array( 'wptests_pt1', 'wptests_pt2' ),
)
);

Expand Down

0 comments on commit c0f76fa

Please sign in to comment.