diff options
Diffstat (limited to 'Acl/Tests/Domain/FieldEntryTest.php')
-rw-r--r-- | Acl/Tests/Domain/FieldEntryTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Acl/Tests/Domain/FieldEntryTest.php b/Acl/Tests/Domain/FieldEntryTest.php index 735e2e8..55b083c 100644 --- a/Acl/Tests/Domain/FieldEntryTest.php +++ b/Acl/Tests/Domain/FieldEntryTest.php @@ -64,11 +64,11 @@ class FieldEntryTest extends \PHPUnit_Framework_TestCase protected function getAcl() { - return $this->getMock('Symfony\Component\Security\Acl\Model\AclInterface'); + return $this->getMockBuilder('Symfony\Component\Security\Acl\Model\AclInterface')->getMock(); } protected function getSid() { - return $this->getMock('Symfony\Component\Security\Acl\Model\SecurityIdentityInterface'); + return $this->getMockBuilder('Symfony\Component\Security\Acl\Model\SecurityIdentityInterface')->getMock(); } } |