diff options
author | hamza221 <hamzamahjoubi221@gmail.com> | 2023-11-24 17:45:32 +0100 |
---|---|---|
committer | Hamza Mahjoubi <hamzamahjoubi221@gmail.com> | 2024-08-13 11:47:03 +0200 |
commit | 67957e98b97ba89905de168aab477ae476ed3b52 (patch) | |
tree | 1581cfc902fa14451148c7f2fe019a20beedeb4a /apps/dav/tests/unit | |
parent | 6d19c48413c932c24d14c201aca9f05fd1b304ad (diff) | |
download | nextcloud-server-67957e98b97ba89905de168aab477ae476ed3b52.tar.gz nextcloud-server-67957e98b97ba89905de168aab477ae476ed3b52.zip |
fix: handle-duplicate-reminder
Signed-off-by: hamza221 <hamzamahjoubi221@gmail.com>
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Reminder/BackendTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Reminder/BackendTest.php b/apps/dav/tests/unit/CalDAV/Reminder/BackendTest.php index ffba1a2fc96..9900c77bf54 100644 --- a/apps/dav/tests/unit/CalDAV/Reminder/BackendTest.php +++ b/apps/dav/tests/unit/CalDAV/Reminder/BackendTest.php @@ -127,7 +127,7 @@ class BackendTest extends TestCase { 'is_recurrence_exception' => false, 'event_hash' => 'asd123', 'alarm_hash' => 'asd567', - 'type' => 'EMAIL', + 'type' => 'AUDIO', 'is_relative' => true, 'notification_date' => 123456, 'is_repeat_based' => false, @@ -144,7 +144,7 @@ class BackendTest extends TestCase { 'is_recurrence_exception' => false, 'event_hash' => 'asd123', 'alarm_hash' => 'asd567', - 'type' => 'AUDIO', + 'type' => 'EMAIL', 'is_relative' => true, 'notification_date' => 123456, 'is_repeat_based' => false, |