Skip to content

Commit

Permalink
Fix phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Jan 17, 2023
1 parent 339e7e7 commit bd81506
Showing 1 changed file with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,20 @@ public static function wpSetupBeforeClass( $factory ) {
self::$registry_instance_property->setValue( $test_registry );

// Register some categories in the test registry.
$test_registry->register( 'test', array( 'label' => 'Test', 'description' => 'Test description' ) );
$test_registry->register( 'query', array( 'label' => 'Query', 'description' => 'Query' ) );
$test_registry->register(
'test',
array(
'label' => 'Test',
'description' => 'Test description',
)
);
$test_registry->register(
'query',
array(
'label' => 'Query',
'description' => 'Query',
)
);
}

public static function wpTearDownAfterClass() {
Expand Down

0 comments on commit bd81506

Please sign in to comment.