Skip to content

Commit

Permalink
Fix phpcs issues
Browse files Browse the repository at this point in the history
  • Loading branch information
delawski committed Jul 19, 2024
1 parent 26ac1ba commit 09b0198
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/tests/connectors/test-class-connector-wordpress-seo.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
*
* @package WP_Stream
*/

namespace WP_Stream;

class Test_WP_Stream_Connector_WordPress_SEO extends WP_StreamTestCase {
Expand Down Expand Up @@ -69,9 +70,9 @@ public function test_callback_added_post_meta() {
// Create post for later use.
$post_id = wp_insert_post(
array(
'post_title' => 'Test post %!',
'post_content' => 'Lorem ipsum dolor...',
'post_status' => 'publish'
'post_title' => 'Test post %!',
'post_content' => 'Lorem ipsum dolor...',
'post_status' => 'publish',
)
);

Expand Down

0 comments on commit 09b0198

Please sign in to comment.