summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-03-12 18:41:37 +0100
committerMorris Jobke <hey@morrisjobke.de>2019-03-12 18:41:37 +0100
commit5cc5107cba1bc35d51d28569bf46813cc89f26c6 (patch)
treeac923bba1448e7e0d03e115b34263ecc6d440baa /apps
parentc8aad3db813a3268ea940779d8e452b2d9e1e135 (diff)
downloadnextcloud-server-5cc5107cba1bc35d51d28569bf46813cc89f26c6.tar.gz
nextcloud-server-5cc5107cba1bc35d51d28569bf46813cc89f26c6.zip
Fix PHPUnit
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/tests/unit/CalDAV/AbstractCalDavBackend.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/CalDAV/AbstractCalDavBackend.php b/apps/dav/tests/unit/CalDAV/AbstractCalDavBackend.php
index 63d48910f8b..795a04e2cbf 100644
--- a/apps/dav/tests/unit/CalDAV/AbstractCalDavBackend.php
+++ b/apps/dav/tests/unit/CalDAV/AbstractCalDavBackend.php
@@ -27,6 +27,7 @@ namespace OCA\DAV\Tests\unit\CalDAV;
use OCA\DAV\CalDAV\CalDavBackend;
use OCA\DAV\Connector\Sabre\Principal;
+use OCP\App\IAppManager;
use OCP\IConfig;
use OCP\IGroupManager;
use OCP\ILogger;
@@ -83,6 +84,7 @@ abstract class AbstractCalDavBackend extends TestCase {
$this->createMock(ShareManager::class),
$this->createMock(IUserSession::class),
$this->createMock(IConfig::class),
+ $this->createMock(IAppManager::class),
])
->setMethods(['getPrincipalByPath', 'getGroupMembership'])
->getMock();