summaryrefslogtreecommitdiffstats
path: root/Acl/Tests/Domain/EntryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Tests/Domain/EntryTest.php')
-rw-r--r--Acl/Tests/Domain/EntryTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Acl/Tests/Domain/EntryTest.php b/Acl/Tests/Domain/EntryTest.php
index ab8e481..58f2786 100644
--- a/Acl/Tests/Domain/EntryTest.php
+++ b/Acl/Tests/Domain/EntryTest.php
@@ -109,11 +109,11 @@ class EntryTest 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();
}
}