diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-09-23 15:57:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-23 15:57:38 +0200 |
commit | 40b404c5665529ebd661ab032efe24d40ab12df6 (patch) | |
tree | 7bbcfefe1097744294fb4d48ed717e6b324eefa5 /tests | |
parent | 8927510685f59555cf337866370b572934e41408 (diff) | |
parent | b8ab560bdd1f1f9d80ec6c632323b38a4f007ed7 (diff) | |
download | nextcloud-server-40b404c5665529ebd661ab032efe24d40ab12df6.tar.gz nextcloud-server-40b404c5665529ebd661ab032efe24d40ab12df6.zip |
Merge pull request #48111 from nextcloud/fix/move-storage-constructor-to-specific-interface
fix: Move storage constructor to specific interface
Diffstat (limited to 'tests')
-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) { |