diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2024-03-26 21:39:22 +0100 |
---|---|---|
committer | Daniel <mail@danielkesselberg.de> | 2024-05-31 17:58:45 +0200 |
commit | 951a679788652b479149efee38129778fee1c378 (patch) | |
tree | 61f8edb40af523eb979fd270b17bb77ef13ac8e5 /build | |
parent | 981101f927388997e91928cce1eeeea28437e900 (diff) | |
download | nextcloud-server-951a679788652b479149efee38129778fee1c378.tar.gz nextcloud-server-951a679788652b479149efee38129778fee1c378.zip |
feat(caldav): expose calendar subscriptions
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'build')
-rw-r--r-- | build/integration/features/caldav.feature | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/caldav.feature b/build/integration/features/caldav.feature index e2cb4f8dc92..fffdd89d367 100644 --- a/build/integration/features/caldav.feature +++ b/build/integration/features/caldav.feature @@ -13,7 +13,7 @@ Feature: caldav When "user0" requests calendar "admin/MyCalendar" on the endpoint "/remote.php/dav/calendars/" Then The CalDAV HTTP status code should be "404" And The exception is "Sabre\DAV\Exception\NotFound" - And The error message is "Node with name 'MyCalendar' could not be found" + And The error message is "Calendar with name 'MyCalendar' could not be found" Scenario: Accessing a not shared calendar of another user via the legacy endpoint Given user "user0" exists @@ -22,7 +22,7 @@ Feature: caldav When "user0" requests calendar "admin/MyCalendar" on the endpoint "/remote.php/caldav/calendars/" Then The CalDAV HTTP status code should be "404" And The exception is "Sabre\DAV\Exception\NotFound" - And The error message is "Node with name 'MyCalendar' could not be found" + And The error message is "Calendar with name 'MyCalendar' could not be found" Scenario: Accessing a not existing calendar of another user Given user "user0" exists |