JobListTest: Fix JobList constructor call

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2023-04-24 19:07:13 +02:00
parent 524d053eb2
commit 06d6cf4ebc

View file

@ -12,6 +12,7 @@ use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\IJob;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IConfig;
use Psr\Log\LoggerInterface;
use Test\TestCase;
/**
@ -44,7 +45,8 @@ class JobListTest extends TestCase {
$this->instance = new \OC\BackgroundJob\JobList(
$this->connection,
$this->config,
$this->timeFactory
$this->timeFactory,
\OC::$server->get(LoggerInterface::class),
);
}