summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/unit/DAV
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2018-11-20 16:02:13 +0100
committerRobin Appelman <robin@icewind.nl>2018-11-23 15:36:40 +0100
commitffd77780406532964bf617f105ff7bcf2ee9c8f7 (patch)
treef2029635f86153bf7c4c95bec4ea4791dbce1ca1 /apps/dav/tests/unit/DAV
parent75c373705408339dc71e5ba6775737b896dd5034 (diff)
downloadnextcloud-server-ffd77780406532964bf617f105ff7bcf2ee9c8f7.tar.gz
nextcloud-server-ffd77780406532964bf617f105ff7bcf2ee9c8f7.zip
extend anonymous options to work on every dav url
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/dav/tests/unit/DAV')
-rw-r--r--apps/dav/tests/unit/DAV/AnonymousOptionsTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/DAV/AnonymousOptionsTest.php b/apps/dav/tests/unit/DAV/AnonymousOptionsTest.php
index 4e440e6644b..87a778e596d 100644
--- a/apps/dav/tests/unit/DAV/AnonymousOptionsTest.php
+++ b/apps/dav/tests/unit/DAV/AnonymousOptionsTest.php
@@ -54,7 +54,7 @@ class AnonymousOptionsTest extends TestCase {
public function testAnonymousOptionsNonRoot() {
$response = $this->sendRequest('OPTIONS', 'foo');
- $this->assertEquals(401, $response->getStatus());
+ $this->assertEquals(200, $response->getStatus());
}
}