diff --git a/tests/TestCase/Provider/AuthenticationServiceProviderTest.php b/tests/TestCase/Provider/AuthenticationServiceProviderTest.php index 12a78655..cf5d9ac2 100644 --- a/tests/TestCase/Provider/AuthenticationServiceProviderTest.php +++ b/tests/TestCase/Provider/AuthenticationServiceProviderTest.php @@ -96,12 +96,11 @@ public function testGetAuthenticationService() 'skipTwoFactorVerify' => true, 'impersonateSessionKey' => 'AuthImpersonate', ], - FormAuthenticator::class => - [ - 'loginUrl' => '/login', - 'keyCheckEnabledRecaptcha' => 'Users.reCaptcha.login', - 'fields' => ['username' => 'email', 'password' => 'alt_password'], - ], + FormAuthenticator::class => [ + 'loginUrl' => '/login', + 'keyCheckEnabledRecaptcha' => 'Users.reCaptcha.login', + 'fields' => ['username' => 'email', 'password' => 'alt_password'], + ], TokenAuthenticator::class => [ 'header' => null, 'queryParam' => 'api_key', @@ -119,6 +118,8 @@ public function testGetAuthenticationService() $config = $value->getConfig(); $actual[get_class($value)] = $config; } + var_dump($actual); + var_dump($expected); $this->assertEquals($expected, $actual); /**