From 622e0774da36a0dab82bed5702dc3d0cb947d92b Mon Sep 17 00:00:00 2001 From: jkoberg Date: Fri, 29 Apr 2022 16:01:54 +0200 Subject: [PATCH] decode href in xml response Signed-off-by: jkoberg --- tests/acceptance/features/bootstrap/SpacesContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/features/bootstrap/SpacesContext.php b/tests/acceptance/features/bootstrap/SpacesContext.php index 61d8f20b0..82304673c 100644 --- a/tests/acceptance/features/bootstrap/SpacesContext.php +++ b/tests/acceptance/features/bootstrap/SpacesContext.php @@ -1145,7 +1145,7 @@ class SpacesContext implements Context { $results = []; if ($multistatusResults !== null) { foreach ($multistatusResults as $multistatusResult) { - $entryPath = $multistatusResult['value'][0]['value']; + $entryPath = \urldecode($multistatusResult['value'][0]['value']); $entryName = \str_replace($topWebDavPath, "", $entryPath); $entryName = \rawurldecode($entryName); $entryName = \trim($entryName, "/");