summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/tests')
-rw-r--r--apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php b/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php
index 7322b71a7ec..564059cd1dc 100644
--- a/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php
+++ b/apps/dav/tests/unit/Connector/Sabre/FilesPluginTest.php
@@ -45,6 +45,7 @@ use Sabre\DAV\Server;
use Sabre\DAV\Tree;
use Sabre\HTTP\RequestInterface;
use Sabre\HTTP\ResponseInterface;
+use Sabre\Xml\Service;
use Test\TestCase;
/**
@@ -126,6 +127,7 @@ class FilesPluginTest extends TestCase {
->disableOriginalConstructor()
->getMock();
$this->server->httpResponse = $response;
+ $this->server->xml = new Service();
$this->plugin->initialize($this->server);
}