diff options
Diffstat (limited to 'Tests/Acl/Domain/PermissionGrantingStrategyTest.php')
-rw-r--r-- | Tests/Acl/Domain/PermissionGrantingStrategyTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Acl/Domain/PermissionGrantingStrategyTest.php b/Tests/Acl/Domain/PermissionGrantingStrategyTest.php index 67c9f3f..d200d2b 100644 --- a/Tests/Acl/Domain/PermissionGrantingStrategyTest.php +++ b/Tests/Acl/Domain/PermissionGrantingStrategyTest.php @@ -31,7 +31,7 @@ class PermissionGrantingStrategyTest extends \PHPUnit_Framework_TestCase $this->assertFalse($strategy->isGranted($acl, array(1), array($sid))); } - public function testIsGrantedFallsbackToClassAcesIfNoApplicableObjectAceWasFound() + public function testIsGrantedFallsBackToClassAcesIfNoApplicableObjectAceWasFound() { $strategy = new PermissionGrantingStrategy(); $acl = $this->getAcl($strategy); @@ -73,7 +73,7 @@ class PermissionGrantingStrategyTest extends \PHPUnit_Framework_TestCase } /** - * @expectedException Symfony\Component\Security\Acl\Exception\NoAceFoundException + * @expectedException \Symfony\Component\Security\Acl\Exception\NoAceFoundException */ public function testIsGrantedReturnsExceptionIfNoAceIsFound() { |