diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-09-23 14:50:43 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-09-23 14:50:43 +0200 |
commit | b8ab560bdd1f1f9d80ec6c632323b38a4f007ed7 (patch) | |
tree | 73cf33cfea3b7067071df5c49da27f298ddb570e /tests/lib/Files/ViewTest.php | |
parent | eac9255966fb94baa26811b59a74e3139237f026 (diff) | |
download | nextcloud-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.php | 1 |
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) { |