diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/InitialStateServiceTest.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/lib/InitialStateServiceTest.php b/tests/lib/InitialStateServiceTest.php index 2afa257d3be..30eca056206 100644 --- a/tests/lib/InitialStateServiceTest.php +++ b/tests/lib/InitialStateServiceTest.php @@ -25,6 +25,8 @@ declare(strict_types=1); namespace Test; +use OC\AppFramework\Bootstrap\Coordinator; +use OCP\IServerContainer; use function json_encode; use JsonSerializable; use OC\InitialStateService; @@ -40,7 +42,9 @@ class InitialStateServiceTest extends TestCase { parent::setUp(); $this->service = new InitialStateService( - $this->createMock(ILogger::class) + $this->createMock(ILogger::class), + $this->createMock(Coordinator::class), + $this->createMock(IServerContainer::class) ); } |