diff --git a/Tests/Integration/test-davacl.py b/Tests/Integration/test-davacl.py index 986a27be5..a254f25f9 100755 --- a/Tests/Integration/test-davacl.py +++ b/Tests/Integration/test-davacl.py @@ -110,7 +110,7 @@ class DAVCalendarSuperUserAclTest(unittest.TestCase): ["{urn:ietf:params:xml:ns:caldav}calendar-data"]) self.client.execute(sync_query) if sync_query.response["status"] != 404: - event = self._calendarDataInMultistatus(sync_query, "{DAV:}sync-response") + event = self._calendarDataInMultistatus(sync_query, "{DAV:}response") return event @@ -581,7 +581,7 @@ class DAVCalendarAclTest(DAVAclTest): self.subscriber_client.execute(sync_query) if sync_query.response["status"] != 404: event = self._calendarDataInMultistatus(sync_query, url, - "{DAV:}sync-response") + "{DAV:}response") return event diff --git a/Tests/Integration/webdavsync-tool.py b/Tests/Integration/webdavsync-tool.py index 2ab453e08..8aa2a2729 100644 --- a/Tests/Integration/webdavsync-tool.py +++ b/Tests/Integration/webdavsync-tool.py @@ -43,7 +43,7 @@ def changedItemsFromCollection(client, collection, synctoken=None): doc = syncquery.response["document"] # extract all hrefs - for syncResponse in doc.iter("{DAV:}sync-response"): + for syncResponse in doc.iter("{DAV:}response"): href = syncResponse.find("{DAV:}href") if href is not None: hrefs.append(href.text)