aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/tests
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-26 15:46:46 +0100
committerGitHub <noreply@github.com>2018-01-26 15:46:46 +0100
commitc67736a54246dddfdbe41883527bc0d6d54067c6 (patch)
tree98d30796351a588d437cf5fe11c37f9c2974db57 /apps/dav/tests
parent08d184816fd0934de626e477cf4afe7c90d13461 (diff)
parent1b8fc260c6f06ddeb948f55a2985a20fb9149c3d (diff)
downloadnextcloud-server-c67736a54246dddfdbe41883527bc0d6d54067c6.tar.gz
nextcloud-server-c67736a54246dddfdbe41883527bc0d6d54067c6.zip
Merge pull request #7707 from nextcloud/bugfix/noid/birthdaycalendar-different-uids
generate different UIDs for Birthday, Anniversary and Death event
Diffstat (limited to 'apps/dav/tests')
-rw-r--r--apps/dav/tests/unit/CardDAV/BirthdayServiceTest.php2
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 {