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:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-10-05 16:49:00 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2020-10-05 16:49:00 +0300
commita1faee8a1e350b57ebbee2c3a14bb4dfb34eb107 (patch)
tree3add0022c2533cc0a0b66c71e54128b4bbdf05f1 /apps
parentdb69b1bc43e1f4fe4d363217aac88b8e987b7eda (diff)
Fix unit tests
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/tests/unit/Connector/Sabre/DirectoryTest.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/Connector/Sabre/DirectoryTest.php b/apps/dav/tests/unit/Connector/Sabre/DirectoryTest.php
index 6e0cac8e9cc..e292b6794da 100644
--- a/apps/dav/tests/unit/Connector/Sabre/DirectoryTest.php
+++ b/apps/dav/tests/unit/Connector/Sabre/DirectoryTest.php
@@ -304,6 +304,9 @@ class DirectoryTest extends \Test\TestCase {
->method('getFileInfo')
->willReturn($this->info);
+ $mountPoint->method('getMountPoint')
+ ->willReturn('/user/files/mymountpoint');
+
$dir = new Directory($this->view, $this->info);
$this->assertEquals([200, -3], $dir->getQuotaInfo()); //200 used, unlimited
}
@@ -339,6 +342,9 @@ class DirectoryTest extends \Test\TestCase {
->method('getMountPoint')
->willReturn($mountPoint);
+ $mountPoint->method('getMountPoint')
+ ->willReturn('/user/files/mymountpoint');
+
$this->view->expects($this->once())
->method('getFileInfo')
->willReturn($this->info);