mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-02-18 23:02:49 +00:00
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:
parent
c96a42e08a
commit
bb389cda94
@ -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'))" );
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user