aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/Files/ViewTest.php
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2024-09-23 14:50:43 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2024-09-23 14:50:43 +0200
commitb8ab560bdd1f1f9d80ec6c632323b38a4f007ed7 (patch)
tree73cf33cfea3b7067071df5c49da27f298ddb570e /tests/lib/Files/ViewTest.php
parenteac9255966fb94baa26811b59a74e3139237f026 (diff)
downloadnextcloud-server-b8ab560bdd1f1f9d80ec6c632323b38a4f007ed7.tar.gz
nextcloud-server-b8ab560bdd1f1f9d80ec6c632323b38a4f007ed7.zip
fix(tests): Fix test to remove call to non-existing constructorfix/move-storage-constructor-to-specific-interface
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'tests/lib/Files/ViewTest.php')
-rw-r--r--tests/lib/Files/ViewTest.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/lib/Files/ViewTest.php b/tests/lib/Files/ViewTest.php
index 53da32b24db..636280f89eb 100644
--- a/tests/lib/Files/ViewTest.php
+++ b/tests/lib/Files/ViewTest.php
@@ -1589,7 +1589,6 @@ class ViewTest extends \Test\TestCase {
foreach ($mountPoints as $mountPoint) {
$storage = $this->getMockBuilder(Storage::class)
->setMethods([])
- ->setConstructorArgs([[]])
->getMock();
$storage->method('getId')->willReturn('non-null-id');
$storage->method('getStorageCache')->willReturnCallback(function () use ($storage) {