diff options
author | Joas Schilling <coding@schilljs.com> | 2017-10-09 12:57:41 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-10-09 12:57:41 +0200 |
commit | dbaad22472a2ed9cd9033e3ef0a82b5f7530eec2 (patch) | |
tree | 0d4dcef5d27c684471e7e530b39068ca1ec86dd1 /apps | |
parent | fd681fe257abebc107e80790455c1e0ef5bd5c3e (diff) | |
download | nextcloud-server-dbaad22472a2ed9cd9033e3ef0a82b5f7530eec2.tar.gz nextcloud-server-dbaad22472a2ed9cd9033e3ef0a82b5f7530eec2.zip |
Fix tests with group manager
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/CalDavBackendTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php b/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php index 95ea09148be..50c8b39484e 100644 --- a/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php +++ b/apps/dav/tests/unit/CalDAV/CalDavBackendTest.php @@ -134,7 +134,7 @@ class CalDavBackendTest extends AbstractCalDavBackend { ->method('userExists') ->willReturn(true); - $this->userManager->expects($this->any()) + $this->groupManager->expects($this->any()) ->method('groupExists') ->willReturn(true); |