Skip to content

Commit 9729c18

Browse files
committed
Fix PHPCS errors
1 parent c11b535 commit 9729c18

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

tests/phpunit/tests/taxonomy.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,12 @@ public function test_wp_update_category() {
565565
);
566566

567567
// Circular parent is reset to 0.
568-
$child_id = self::factory()->category->create( array( 'name' => 'Child', 'parent' => $cat_id ) );
568+
$child_id = self::factory()->category->create(
569+
array(
570+
'name' => 'Child',
571+
'parent' => $cat_id,
572+
)
573+
);
569574
wp_update_category(
570575
array(
571576
'cat_ID' => $cat_id,

0 commit comments

Comments
 (0)