diff options
author | Joas Schilling <coding@schilljs.com> | 2022-02-15 07:14:14 +0100 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-03-28 17:17:29 +0200 |
commit | e1e003f5693a82a7bf6d8a3be480d44dd76df8f6 (patch) | |
tree | b8414e5e94244dbe73a9f9b473a1bb342b9ad016 /apps/dav | |
parent | d31bc9fa345900330eb036597ed8303a091cb123 (diff) | |
download | nextcloud-server-e1e003f5693a82a7bf6d8a3be480d44dd76df8f6.tar.gz nextcloud-server-e1e003f5693a82a7bf6d8a3be480d44dd76df8f6.zip |
Also comment out in test
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Capabilities.php | 4 | ||||
-rw-r--r-- | apps/dav/tests/unit/CapabilitiesTest.php | 3 |
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()); |