Coding Standards: Fix WPCS issue in [51404].

This fixes an "Expected 1 spaces before closing parenthesis; 0 found" error.

See #53363.

git-svn-id: https://develop.svn.wordpress.org/trunk@51405 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2021-07-12 10:52:48 +00:00
parent c96a42e08a
commit bb389cda94

View File

@ -1484,7 +1484,7 @@ class WP_Test_REST_Posts_Controller extends WP_Test_REST_Post_Type_Controller_Te
$ids = wp_list_pluck( $posts, 'id' );
$this->assertContains( $id1, $ids );
$this->assertNotContains( $id2, $ids );
$this->assertNotContains( $id3, $ids);
$this->assertNotContains( $id3, $ids );
$this->assertPostsWhere( " AND {posts}.ID NOT IN ($id3,$id2) AND {posts}.post_type = 'post' AND (({posts}.post_status = 'publish'))" );
}