summaryrefslogtreecommitdiffstats
path: root/Tests/Http/Firewall
diff options
context:
space:
mode:
authorBernhard Schussek <bschussek@gmail.com>2013-01-05 18:52:40 +0100
committerBernhard Schussek <bschussek@gmail.com>2013-01-05 18:52:40 +0100
commit39b2670c52d0d53224cb671418e2a852b864f786 (patch)
treee46e679657abff4d89862650f148b1f5c8526d4e /Tests/Http/Firewall
parentde6cab31d0b451b163dd2f44adc2e87d1162e3e7 (diff)
downloadsymfony-security-39b2670c52d0d53224cb671418e2a852b864f786.zip
symfony-security-39b2670c52d0d53224cb671418e2a852b864f786.tar.gz
symfony-security-39b2670c52d0d53224cb671418e2a852b864f786.tar.bz2
Fixed @expectedException definitions to reference absolute exception paths
Diffstat (limited to 'Tests/Http/Firewall')
-rw-r--r--Tests/Http/Firewall/AccessListenerTest.php4
-rw-r--r--Tests/Http/Firewall/LogoutListenerTest.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Http/Firewall/AccessListenerTest.php b/Tests/Http/Firewall/AccessListenerTest.php
index e3ffbfc..53ab350 100644
--- a/Tests/Http/Firewall/AccessListenerTest.php
+++ b/Tests/Http/Firewall/AccessListenerTest.php
@@ -31,7 +31,7 @@ class AccessListenerTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\AccessDeniedException
+ * @expectedException \Symfony\Component\Security\Core\Exception\AccessDeniedException
*/
public function testHandleWhenTheAccessDecisionManagerDecidesToRefuseAccess()
{
@@ -198,7 +198,7 @@ class AccessListenerTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundException
+ * @expectedException \Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundException
*/
public function testHandleWhenTheSecurityContextHasNoToken()
{
diff --git a/Tests/Http/Firewall/LogoutListenerTest.php b/Tests/Http/Firewall/LogoutListenerTest.php
index aa0f5a7..ba94b6e 100644
--- a/Tests/Http/Firewall/LogoutListenerTest.php
+++ b/Tests/Http/Firewall/LogoutListenerTest.php
@@ -166,7 +166,7 @@ class LogoutListenerTest extends \PHPUnit_Framework_TestCase
}
/**
- * @expectedException Symfony\Component\Security\Core\Exception\LogoutException
+ * @expectedException \Symfony\Component\Security\Core\Exception\LogoutException
*/
public function testCsrfValidationFails()
{