diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 12:41:37 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 12:41:37 +0100 |
commit | fe7103506bf6f0497b172c8c38ff36ab1c70f4d0 (patch) | |
tree | 3ea21e35c79d632ceb6a783b9581d9fd310ae0b8 /apps/dav/tests/unit | |
parent | 51072f742ea2988d8e485dff60d81834e077fe3f (diff) | |
download | nextcloud-server-fe7103506bf6f0497b172c8c38ff36ab1c70f4d0.tar.gz nextcloud-server-fe7103506bf6f0497b172c8c38ff36ab1c70f4d0.zip |
Use a birthday title which does not require translation because we have no idea about the target device language and forcing English upon all users is kind of bad
Diffstat (limited to 'apps/dav/tests/unit')
-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 faf42d9e1b8..2efb3c09aea 100644 --- a/apps/dav/tests/unit/carddav/birthdayservicetest.php +++ b/apps/dav/tests/unit/carddav/birthdayservicetest.php @@ -59,7 +59,7 @@ class BirthdayServiceTest extends TestCase { $this->assertInstanceOf('Sabre\VObject\Component\VCalendar', $cal); $this->assertTrue(isset($cal->VEVENT)); $this->assertEquals('FREQ=YEARLY', $cal->VEVENT->RRULE->getValue()); - $this->assertEquals('12345\'s Birthday (1900)', $cal->VEVENT->SUMMARY->getValue()); + $this->assertEquals('12345 (*1900)', $cal->VEVENT->SUMMARY->getValue()); $this->assertEquals('TRANSPARENT', $cal->VEVENT->TRANSP->getValue()); } } |