diff --git a/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php b/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php index 8f5e0b9..fe0f5ad 100644 --- a/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php +++ b/core/modules/basic_auth/src/Tests/BasicAuthTestTrait.php @@ -29,9 +29,7 @@ */ protected function basicAuthGet($path, array $options = array(), $username, $password) { // Set up Curl to use basic authentication with the test user's credentials. - $headers = [ - 'Authorization: Basic ' . base64_encode("$username:$password"), - ]; + $headers = ['Authorization: Basic ' . base64_encode("$username:$password")]; return $this->drupalGet($path, $options, $headers); }