diff options
author | Joas Schilling <coding@schilljs.com> | 2018-11-23 12:38:24 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-11-23 12:39:02 +0100 |
commit | 99bcc1363ecf33736993d83ff24ae5374f0d0f9a (patch) | |
tree | d0fc5e4bb412a374489f6249e282f95f850672c3 /apps/dav/tests/unit/CalDAV | |
parent | 695e60228d0a2441dcbb3b8512d9b9be4fbfd2d8 (diff) | |
download | nextcloud-server-99bcc1363ecf33736993d83ff24ae5374f0d0f9a.tar.gz nextcloud-server-99bcc1363ecf33736993d83ff24ae5374f0d0f9a.zip |
Fix wrong used type
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav/tests/unit/CalDAV')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Activity/Provider/BaseTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Activity/Provider/BaseTest.php b/apps/dav/tests/unit/CalDAV/Activity/Provider/BaseTest.php index 37a56f88042..9c4f5eeb47c 100644 --- a/apps/dav/tests/unit/CalDAV/Activity/Provider/BaseTest.php +++ b/apps/dav/tests/unit/CalDAV/Activity/Provider/BaseTest.php @@ -182,7 +182,7 @@ class BaseTest extends TestCase { */ public function testGenerateGroupParameter($gid) { $this->assertEquals([ - 'type' => 'group', + 'type' => 'user-group', 'id' => $gid, 'name' => $gid, ], $this->invokePrivate($this->provider, 'generateGroupParameter', [$gid])); |