summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@owncloud.com>2016-02-27 00:59:46 +0100
committerVincent Petry <pvince81@owncloud.com>2016-05-20 16:22:13 +0200
commit2b30136ae9286026af4c8be8f0311f39bbedff06 (patch)
tree7c437dc0baa36efb6a07fde87f8a6c8b3fdad9d1 /apps/dav/tests/unit
parent59a85a4c76b80658d9373e3acf4f71b872b244a0 (diff)
downloadnextcloud-server-2b30136ae9286026af4c8be8f0311f39bbedff06.tar.gz
nextcloud-server-2b30136ae9286026af4c8be8f0311f39bbedff06.zip
ensure comments-href returns a value also when propfind is done against remote.php/files
Diffstat (limited to 'apps/dav/tests/unit')
-rw-r--r--apps/dav/tests/unit/connector/sabre/commentpropertiesplugin.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/connector/sabre/commentpropertiesplugin.php b/apps/dav/tests/unit/connector/sabre/commentpropertiesplugin.php
index f915c83c4a7..f7f87e01544 100644
--- a/apps/dav/tests/unit/connector/sabre/commentpropertiesplugin.php
+++ b/apps/dav/tests/unit/connector/sabre/commentpropertiesplugin.php
@@ -84,7 +84,8 @@ class CommentsPropertiesPlugin extends \Test\TestCase {
public function baseUriProvider() {
return [
['owncloud/remote.php/webdav/', '4567', 'owncloud/remote.php/dav/comments/files/4567'],
- ['owncloud/remote.php/wicked/', '4567', null]
+ ['owncloud/remote.php/files/', '4567', 'owncloud/remote.php/dav/comments/files/4567'],
+ ['owncloud/wicked.php/files/', '4567', null]
];
}