Fix xml namespace in test

This commit is contained in:
Thomas Müller 2016-01-12 14:11:09 +01:00
parent ed24511185
commit f772572249
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class PluginTest extends TestCase {
$request = new Request(); $request = new Request();
$request->addHeader('Content-Type', 'application/xml'); $request->addHeader('Content-Type', 'application/xml');
$request->setUrl('addressbook1.vcf'); $request->setUrl('addressbook1.vcf');
$request->setBody('<?xml version="1.0" encoding="utf-8" ?><CS:share xmlns:D="DAV:" xmlns:CS="urn:ietf:params:xml:ns:carddav"><CS:set><D:href>principal:principals/admin</D:href><CS:read-write/></CS:set> <CS:remove><D:href>mailto:wilfredo@example.com</D:href></CS:remove></CS:share>'); $request->setBody('<?xml version="1.0" encoding="utf-8" ?><CS:share xmlns:D="DAV:" xmlns:CS="http://owncloud.org/ns"><CS:set><D:href>principal:principals/admin</D:href><CS:read-write/></CS:set> <CS:remove><D:href>mailto:wilfredo@example.com</D:href></CS:remove></CS:share>');
$response = new Response(); $response = new Response();
$this->plugin->httpPost($request, $response); $this->plugin->httpPost($request, $response);
} }