Skip to content

Commit

Permalink
Coding standards.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbillion committed Jan 16, 2025
1 parent 545870b commit e9b6dbd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/phpunit/tests/user.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
public function set_up() {
parent::set_up();

add_action( 'set_auth_cookie', array( $this, 'action_set_auth_cookie' ), 10, 6 );
add_action( 'set_auth_cookie', array( $this, 'action_set_auth_cookie' ), 10, 6 );
add_action( 'set_logged_in_cookie', array( $this, 'action_set_logged_in_cookie' ), 10 );
add_action( 'clear_auth_cookie', array( $this, 'action_clear_auth_cookie' ) );
add_action( 'clear_auth_cookie', array( $this, 'action_clear_auth_cookie' ) );

$_COOKIE = array();

$_COOKIE = [];
$this->author = clone self::$_author;
}

Expand Down

0 comments on commit e9b6dbd

Please sign in to comment.