diff options
author | Marcel Klehr <mklehr@gmx.net> | 2024-07-17 18:24:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 18:24:11 +0200 |
commit | 7cb67c67c746d35f4762fb8e7a8ae40367a78fa5 (patch) | |
tree | 39b65230792f8f964b3859a168264639aa85313d /tests | |
parent | 19ba872e9aae98686ad61acd543f9945d8577797 (diff) | |
parent | 183726a299356e3ced6ad3b54ffe5f6d5273c896 (diff) | |
download | nextcloud-server-7cb67c67c746d35f4762fb8e7a8ae40367a78fa5.tar.gz nextcloud-server-7cb67c67c746d35f4762fb8e7a8ae40367a78fa5.zip |
Merge pull request #46509 from nextcloud/feat/settings/taskprocessing
feat(settings/admin/ai): Add Task Processing API settings
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/TaskProcessing/TaskProcessingTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/TaskProcessing/TaskProcessingTest.php b/tests/lib/TaskProcessing/TaskProcessingTest.php index fe679ebbd2d..a1857fad1b3 100644 --- a/tests/lib/TaskProcessing/TaskProcessingTest.php +++ b/tests/lib/TaskProcessing/TaskProcessingTest.php @@ -373,6 +373,7 @@ class TaskProcessingTest extends \Test\TestCase { $this->shareManager = $this->createMock(\OCP\Share\IManager::class); $this->manager = new Manager( + \OC::$server->get(IConfig::class), $this->coordinator, $this->serverContainer, \OC::$server->get(LoggerInterface::class), |