summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKévin Dunglas <dunglas@gmail.com>2017-01-03 08:50:10 +0100
committerKévin Dunglas <dunglas@gmail.com>2017-01-03 08:50:10 +0100
commitd8ef1285ab7a57971090fb70449a4098f2cb7ac9 (patch)
tree98d447c8296abe3403376a03e2ed55c9e51c6bfb
parentfcff017dcffec52cd74a20593f58266e9001aba7 (diff)
downloadsymfony-security-d8ef1285ab7a57971090fb70449a4098f2cb7ac9.zip
symfony-security-d8ef1285ab7a57971090fb70449a4098f2cb7ac9.tar.gz
symfony-security-d8ef1285ab7a57971090fb70449a4098f2cb7ac9.tar.bz2
[Security] Typo fix
-rw-r--r--Tests/Http/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Http/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php b/Tests/Http/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php
index b381550..a47111b 100644
--- a/Tests/Http/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php
+++ b/Tests/Http/Firewall/UsernamePasswordJsonAuthenticationListenerTest.php
@@ -49,7 +49,7 @@ class UsernamePasswordJsonAuthenticationListenerTest extends \PHPUnit_Framework_
$authenticationFailureHandler = $this->getMockBuilder(AuthenticationFailureHandlerInterface::class)->getMock();
$authenticationFailureHandler->method('onAuthenticationFailure')->willReturn(new Response('ko'));
- $this->listener = new UsernamePasswordJsonAuthenticationListener($tokenStorage, $authenticationManager, 'providerKey', $authenticationSuccessHandler, $authenticationFailureHandler, $options);
+ $this->listener = new UsernamePasswordJsonAuthenticationListener($tokenStorage, $authenticationManager, 'providerKey', $authenticationSuccessHandler, $authenticationFailureHandler, $options);
}
public function testHandleSuccess()