Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-08-12 09:18:35 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-08-13 21:55:23 +0300
commite9bd87af96bc2b85f7495e164f68da8ccf02b629 (patch)
tree0106aef3d4be376f45dd1ac2107e3115e0c01ed1 /apps
parent380233044c32c28c014977ebb2b20106a77f5f1f (diff)
Adjust chunking test for non-existing target node
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/tests/unit/Upload/ChunkingPluginTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Upload/ChunkingPluginTest.php b/apps/dav/tests/unit/Upload/ChunkingPluginTest.php
index 3951d1f1795..102eb727c3d 100644
--- a/apps/dav/tests/unit/Upload/ChunkingPluginTest.php
+++ b/apps/dav/tests/unit/Upload/ChunkingPluginTest.php
@@ -107,7 +107,7 @@ class ChunkingPluginTest extends TestCase {
->with('OC-Total-Length')
->willReturn(4);
- $this->assertNull($this->plugin->beforeMove('source', 'target'));
+ $this->assertFalse($this->plugin->beforeMove('source', 'target'));
}
public function testBeforeMoveFutureFileMoveIt() {