diff options
author | Georg Ehrke <developer@georgehrke.com> | 2018-01-04 20:15:24 +0100 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2018-01-04 20:15:24 +0100 |
commit | 1b8fc260c6f06ddeb948f55a2985a20fb9149c3d (patch) | |
tree | 7fcfe8a74a4d41f40f9270ffee3533c1bf27ce71 /apps/dav/tests | |
parent | e6557324580e4f76107a059f9fe84b03fbae2b71 (diff) | |
download | nextcloud-server-1b8fc260c6f06ddeb948f55a2985a20fb9149c3d.tar.gz nextcloud-server-1b8fc260c6f06ddeb948f55a2985a20fb9149c3d.zip |
generate different UIDs for Birthday, Anniversary and Death event
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'apps/dav/tests')
-rw-r--r-- | apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php b/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php index 867168033a4..739b81ddf01 100644 --- a/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php +++ b/apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php @@ -64,7 +64,7 @@ class BirthdayServiceTest extends TestCase { * @param string | null $data */ public function testBuildBirthdayFromContact($expectedSummary, $data) { - $cal = $this->service->buildDateFromContact($data, 'BDAY', '*'); + $cal = $this->service->buildDateFromContact($data, 'BDAY', '', '*'); if ($expectedSummary === null) { $this->assertNull($cal); } else { |