summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2016-05-23 14:47:03 +0200
committerVincent Petry <pvince81@owncloud.com>2016-05-23 14:47:03 +0200
commitc10d8a37f70ecdfeea49b646cd2af96e12895c52 (patch)
tree34fadd93504035ae93d1715b43603a62c318a6b2 /apps/dav/tests
parent21df2eb5a1c8b305d953dcc34386da53ec953aee (diff)
parent2b30136ae9286026af4c8be8f0311f39bbedff06 (diff)
downloadnextcloud-server-c10d8a37f70ecdfeea49b646cd2af96e12895c52.tar.gz
nextcloud-server-c10d8a37f70ecdfeea49b646cd2af96e12895c52.zip
Merge pull request #22690 from owncloud/fix-comments-href-remote.php-files
ensure comments-href returns a value also when propfind is done again…
Diffstat (limited to 'apps/dav/tests')
-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]
];
}