diff options
author | Anna Larch <anna@nextcloud.com> | 2024-01-30 18:35:44 +0100 |
---|---|---|
committer | Anna Larch <anna@nextcloud.com> | 2024-02-15 18:01:12 +0100 |
commit | dce69154ba335b610d70094f9daaded3b642f8cb (patch) | |
tree | a9ef54384367de8b48c30fb4babd798fc14533be /build/integration/dav_features | |
parent | 1f0cba5f991a3c12d230284b3d96f91fb50312fd (diff) | |
download | nextcloud-server-dce69154ba335b610d70094f9daaded3b642f8cb.tar.gz nextcloud-server-dce69154ba335b610d70094f9daaded3b642f8cb.zip |
enh(sharing): enable unsharing for sharees for DAV shares (addressbooks and calendars)
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'build/integration/dav_features')
-rw-r--r-- | build/integration/dav_features/caldav.feature | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/dav_features/caldav.feature b/build/integration/dav_features/caldav.feature index e2cb4f8dc92..fffdd89d367 100644 --- a/build/integration/dav_features/caldav.feature +++ b/build/integration/dav_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 |