summaryrefslogtreecommitdiffstats
path: root/Tests/Http/Firewall
diff options
context:
space:
mode:
authorPascal Borreli <pascal@borreli.com>2013-08-24 07:54:37 +0100
committerPascal Borreli <pascal@borreli.com>2013-08-24 07:54:37 +0100
commit0c7673d6453637200bc06ff4a478ac60df6eb9de (patch)
tree6d4ee1276d6e9b6a97464fb32cd084ed24f98d10 /Tests/Http/Firewall
parentcfaabcc76c7b47b3e5e3b09ae5657315c9594c82 (diff)
downloadsymfony-security-0c7673d6453637200bc06ff4a478ac60df6eb9de.zip
symfony-security-0c7673d6453637200bc06ff4a478ac60df6eb9de.tar.gz
symfony-security-0c7673d6453637200bc06ff4a478ac60df6eb9de.tar.bz2
Fixed typos
Diffstat (limited to 'Tests/Http/Firewall')
-rw-r--r--Tests/Http/Firewall/SwitchUserListenerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Http/Firewall/SwitchUserListenerTest.php b/Tests/Http/Firewall/SwitchUserListenerTest.php
index e86ee83..22c7864 100644
--- a/Tests/Http/Firewall/SwitchUserListenerTest.php
+++ b/Tests/Http/Firewall/SwitchUserListenerTest.php
@@ -51,7 +51,7 @@ class SwitchUserListenerTest extends \PHPUnit_Framework_TestCase
{
$this->request->expects($this->any())->method('get')->with('_switch_user')->will($this->returnValue(null));
- $this->event->expects($this->never())->method('setResopnse');
+ $this->event->expects($this->never())->method('setResponse');
$this->securityContext->expects($this->never())->method('setToken');
$listener = new SwitchUserListener($this->securityContext, $this->userProvider, $this->userChecker, 'provider123', $this->accessDecisionManager);