mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
JobListTest: Fix JobList constructor call
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
524d053eb2
commit
06d6cf4ebc
1 changed files with 3 additions and 1 deletions
|
|
@ -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),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue