summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-02-15 07:14:14 +0100
committerJoas Schilling <coding@schilljs.com>2022-02-15 07:14:14 +0100
commit585d069a715bfde0e90e43e52bbd5b58d36c0173 (patch)
treeda426222aa04b6963beab360885875fbadf4d7b2
parent58cec19291ac7f1b10b22286c27e3ab052e9514d (diff)
downloadnextcloud-server-585d069a715bfde0e90e43e52bbd5b58d36c0173.tar.gz
nextcloud-server-585d069a715bfde0e90e43e52bbd5b58d36c0173.zip
Also comment out in test
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--apps/dav/lib/Capabilities.php4
-rw-r--r--apps/dav/tests/unit/CapabilitiesTest.php3
2 files changed, 4 insertions, 3 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php
index 2f0378dd56a..41d1b983587 100644
--- a/apps/dav/lib/Capabilities.php
+++ b/apps/dav/lib/Capabilities.php
@@ -29,8 +29,8 @@ class Capabilities implements ICapability {
return [
'dav' => [
'chunking' => '1.0',
-// disabled because of https://github.com/nextcloud/desktop/issues/4243
-// 'bulkupload' => '1.0',
+ // disabled because of https://github.com/nextcloud/desktop/issues/4243
+ // 'bulkupload' => '1.0',
]
];
}
diff --git a/apps/dav/tests/unit/CapabilitiesTest.php b/apps/dav/tests/unit/CapabilitiesTest.php
index 399467f6ed8..7abfd08854b 100644
--- a/apps/dav/tests/unit/CapabilitiesTest.php
+++ b/apps/dav/tests/unit/CapabilitiesTest.php
@@ -35,7 +35,8 @@ class CapabilitiesTest extends TestCase {
$expected = [
'dav' => [
'chunking' => '1.0',
- 'bulkupload' => '1.0',
+ // disabled because of https://github.com/nextcloud/desktop/issues/4243
+ // 'bulkupload' => '1.0',
],
];
$this->assertSame($expected, $capabilities->getCapabilities());