diff options
author | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-09-04 22:16:19 +0200 |
---|---|---|
committer | Nicolas Grekas <nicolas.grekas@gmail.com> | 2015-09-06 10:02:00 +0200 |
commit | 2f3ef5d42ca53644a50889c0eafb81ba316cb604 (patch) | |
tree | 963e779e51fe6520ec3e34e2d3779ac4f0531363 /Http | |
parent | dddb2b44d3d3b93b244a39da490e54eea9f79672 (diff) | |
download | symfony-security-2f3ef5d42ca53644a50889c0eafb81ba316cb604.zip symfony-security-2f3ef5d42ca53644a50889c0eafb81ba316cb604.tar.gz symfony-security-2f3ef5d42ca53644a50889c0eafb81ba316cb604.tar.bz2 |
[2.8] Cleanup
Diffstat (limited to 'Http')
-rw-r--r-- | Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php b/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php index 0a1286c..adf91b1 100644 --- a/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php +++ b/Http/Tests/Firewall/SimplePreAuthenticationListenerTest.php @@ -42,7 +42,7 @@ class SimplePreAuthenticationListenerTest extends \PHPUnit_Framework_TestCase ->will($this->returnValue($this->token)) ; - $simpleAuthenticator = $this->getMock('Symfony\Component\Security\Core\Authentication\SimplePreAuthenticatorInterface'); + $simpleAuthenticator = $this->getMock('Symfony\Component\Security\Http\Authentication\SimplePreAuthenticatorInterface'); $simpleAuthenticator ->expects($this->once()) ->method('createToken') @@ -79,7 +79,7 @@ class SimplePreAuthenticationListenerTest extends \PHPUnit_Framework_TestCase ->with($this->equalTo(null)) ; - $simpleAuthenticator = $this->getMock('Symfony\Component\Security\Core\Authentication\SimplePreAuthenticatorInterface'); + $simpleAuthenticator = $this->getMock('Symfony\Component\Security\Http\Authentication\SimplePreAuthenticatorInterface'); $simpleAuthenticator ->expects($this->once()) ->method('createToken') |