Skip to content

Commit

Permalink
fix(ClassifierTest): Use IAppConfig
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <[email protected]>
  • Loading branch information
marcelklehr committed Jan 25, 2024
1 parent c0cc162 commit 23dc403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ClassifierTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function setUp(): void {
->willReturnCallback(fn ($msg) => print($msg."\n"));
$logger->setCliOutput($cliOutput);
$this->jobList = \OC::$server->get(IJobList::class);
$this->config = \OC::$server->getConfig();
$this->config = \OC::$server->get(IAppConfig::class);
$this->queue = \OC::$server->get(QueueService::class);
foreach (self::TEST_FILES as $filename) {
try {
Expand Down

0 comments on commit 23dc403

Please sign in to comment.