Also comment out in test

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2022-02-15 07:14:14 +01:00 committed by Vincent Petry
parent d31bc9fa34
commit e1e003f569
No known key found for this signature in database
GPG key ID: E055D6A4D513575C
2 changed files with 4 additions and 3 deletions

View 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',
]
];
}

View 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());