diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2020-11-05 18:18:40 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2020-11-11 12:38:24 +0000 |
commit | ddd835744e544acfc86d849a17c0182f7ea1ca1a (patch) | |
tree | 819bb04b5f60bbe7c421efa7045f7b610975ce8f /apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php | |
parent | 9650ec1a6ed16e4a2c4ed37b9252c166f319101a (diff) | |
download | nextcloud-server-ddd835744e544acfc86d849a17c0182f7ea1ca1a.tar.gz nextcloud-server-ddd835744e544acfc86d849a17c0182f7ea1ca1a.zip |
Use png icons in caldav reminder emails
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php b/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php index 2d04c605fcf..c07259f9cd7 100644 --- a/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php +++ b/apps/dav/tests/unit/CalDAV/Reminder/NotificationProvider/EmailProviderTest.php @@ -502,7 +502,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i)) ->method('imagePath') - ->with('core', 'actions/info.svg') + ->with('core', 'actions/info.png') ->willReturn('imagePath1'); $this->urlGenerator @@ -514,7 +514,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i + 2)) ->method('imagePath') - ->with('core', 'places/calendar.svg') + ->with('core', 'places/calendar.png') ->willReturn('imagePath2'); $this->urlGenerator @@ -526,7 +526,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i + 4)) ->method('imagePath') - ->with('core', 'actions/address.svg') + ->with('core', 'actions/address.png') ->willReturn('imagePath3'); $this->urlGenerator @@ -538,7 +538,7 @@ class EmailProviderTest extends AbstractNotificationProviderTest { $this->urlGenerator ->expects($this->at(8 * $i + 6)) ->method('imagePath') - ->with('core', 'actions/more.svg') + ->with('core', 'actions/more.png') ->willReturn('imagePath4'); $this->urlGenerator |