diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-08-03 00:20:35 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2023-08-03 00:33:00 +0200 |
commit | 0098af3b98afca8084acc0c2a84c7540560807c1 (patch) | |
tree | 0c0b1a84d38010953634aef35eb0bcfce6e5b6e3 /tests | |
parent | 8fa9607f0fb2259be624fe29fb8ab9e0b163c285 (diff) | |
download | nextcloud-server-0098af3b98afca8084acc0c2a84c7540560807c1.tar.gz nextcloud-server-0098af3b98afca8084acc0c2a84c7540560807c1.zip |
fix: missing argument for TextProcessing Manager
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/TextProcessing/TextProcessingTest.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/lib/TextProcessing/TextProcessingTest.php b/tests/lib/TextProcessing/TextProcessingTest.php index 797571019ce..790593bac23 100644 --- a/tests/lib/TextProcessing/TextProcessingTest.php +++ b/tests/lib/TextProcessing/TextProcessingTest.php @@ -21,6 +21,7 @@ use OCP\AppFramework\Db\DoesNotExistException; use OCP\AppFramework\Utility\ITimeFactory; use OCP\Common\Exception\NotFoundException; use OCP\EventDispatcher\IEventDispatcher; +use OCP\IConfig; use OCP\IServerContainer; use OCP\TextProcessing\Events\TaskFailedEvent; use OCP\TextProcessing\Events\TaskSuccessfulEvent; @@ -157,12 +158,18 @@ class TextProcessingTest extends \Test\TestCase { $this->jobList->expects($this->any())->method('add')->willReturnCallback(function () { }); + $config = $this->createMock(IConfig::class); + $config->method('getAppValue') + ->with('core', 'ai.textprocessing_provider_preferences', '') + ->willReturn(''); + $this->manager = new Manager( $this->serverContainer, $this->coordinator, \OC::$server->get(LoggerInterface::class), $this->jobList, $this->taskMapper, + $config ); } |