mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Also comment out in test
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
d31bc9fa34
commit
e1e003f569
2 changed files with 4 additions and 3 deletions
|
|
@ -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',
|
||||
]
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue