]> source.dussan.org Git - nextcloud-server.git/commitdiff
Also comment out in test 31736/head
authorJoas Schilling <coding@schilljs.com>
Tue, 15 Feb 2022 06:14:14 +0000 (07:14 +0100)
committerVincent Petry <vincent@nextcloud.com>
Mon, 28 Mar 2022 15:17:29 +0000 (17:17 +0200)
Signed-off-by: Joas Schilling <coding@schilljs.com>
apps/dav/lib/Capabilities.php
apps/dav/tests/unit/CapabilitiesTest.php

index 2f0378dd56a409f360865dab5015670dece22e0e..41d1b98358740a490ebe6ed528c3c76aa62adbf5 100644 (file)
@@ -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',
                        ]
                ];
        }
index 399467f6ed8ddced70a96129c66de0433b4b77d6..7abfd08854b7d11c0541b0dc8ba690086fc6fb8b 100644 (file)
@@ -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());