summaryrefslogtreecommitdiffstats
path: root/build/integration/features/bootstrap/WebDav.php
diff options
context:
space:
mode:
Diffstat (limited to 'build/integration/features/bootstrap/WebDav.php')
-rw-r--r--build/integration/features/bootstrap/WebDav.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php
index be181f2bcb7..c25add74f38 100644
--- a/build/integration/features/bootstrap/WebDav.php
+++ b/build/integration/features/bootstrap/WebDav.php
@@ -368,7 +368,7 @@ trait WebDav {
}
public function makeSabrePath($path) {
- return $this->encodePath($this->davPath . '/' . ltrim($path, '/'));
+ return $this->encodePath($this->davPath . $this->getFilesPath() . ltrim($path, '/'));
}
public function getSabreClient($user) {
@@ -584,7 +584,7 @@ trait WebDav {
];
}
- $response = $client->proppatch($this->davPath . '/' . ltrim($path, '/'), $properties, $folderDepth);
+ $response = $client->proppatch($this->davPath . $this->getFilesPath() . ltrim($path, '/'), $properties, $folderDepth);
return $response;
}