diff options
author | Bernhard Schussek <bschussek@gmail.com> | 2013-01-05 18:52:40 +0100 |
---|---|---|
committer | Bernhard Schussek <bschussek@gmail.com> | 2013-01-05 18:52:40 +0100 |
commit | 39b2670c52d0d53224cb671418e2a852b864f786 (patch) | |
tree | e46e679657abff4d89862650f148b1f5c8526d4e /Tests/Core/User/AccountCheckerTest.php | |
parent | de6cab31d0b451b163dd2f44adc2e87d1162e3e7 (diff) | |
download | symfony-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/Core/User/AccountCheckerTest.php')
-rw-r--r-- | Tests/Core/User/AccountCheckerTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/Core/User/AccountCheckerTest.php b/Tests/Core/User/AccountCheckerTest.php index 315e0d4..f28067f 100644 --- a/Tests/Core/User/AccountCheckerTest.php +++ b/Tests/Core/User/AccountCheckerTest.php @@ -33,7 +33,7 @@ class UserCheckerTest extends \PHPUnit_Framework_TestCase } /** - * @expectedException Symfony\Component\Security\Core\Exception\CredentialsExpiredException + * @expectedException \Symfony\Component\Security\Core\Exception\CredentialsExpiredException */ public function testCheckPreAuthCredentialsExpired() { @@ -65,7 +65,7 @@ class UserCheckerTest extends \PHPUnit_Framework_TestCase } /** - * @expectedException Symfony\Component\Security\Core\Exception\LockedException + * @expectedException \Symfony\Component\Security\Core\Exception\LockedException */ public function testCheckPostAuthAccountLocked() { @@ -78,7 +78,7 @@ class UserCheckerTest extends \PHPUnit_Framework_TestCase } /** - * @expectedException Symfony\Component\Security\Core\Exception\DisabledException + * @expectedException \Symfony\Component\Security\Core\Exception\DisabledException */ public function testCheckPostAuthDisabled() { @@ -92,7 +92,7 @@ class UserCheckerTest extends \PHPUnit_Framework_TestCase } /** - * @expectedException Symfony\Component\Security\Core\Exception\AccountExpiredException + * @expectedException \Symfony\Component\Security\Core\Exception\AccountExpiredException */ public function testCheckPostAuthAccountExpired() { |