aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/InitialStateServiceTest.php
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2021-04-27 15:38:12 +0200
committerGitHub <noreply@github.com>2021-04-27 15:38:12 +0200
commit99f0b104216618625114d6dc314598dc294f080d (patch)
tree5f788797751a39248cdf07a3803898ccbdb9c22c /tests/lib/InitialStateServiceTest.php
parent48c50277a92b3b37fb4a9a9e7e20a487649b99db (diff)
parent2d75868935c7eedc5f94e63a45a27875e19053dc (diff)
downloadnextcloud-server-99f0b104216618625114d6dc314598dc294f080d.tar.gz
nextcloud-server-99f0b104216618625114d6dc314598dc294f080d.zip
Merge pull request #26591 from nextcloud/techdebt/noid/less-ilogger
Less ILogger
Diffstat (limited to 'tests/lib/InitialStateServiceTest.php')
-rw-r--r--tests/lib/InitialStateServiceTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/InitialStateServiceTest.php b/tests/lib/InitialStateServiceTest.php
index 30eca056206..2a23774baf1 100644
--- a/tests/lib/InitialStateServiceTest.php
+++ b/tests/lib/InitialStateServiceTest.php
@@ -27,10 +27,10 @@ namespace Test;
use OC\AppFramework\Bootstrap\Coordinator;
use OCP\IServerContainer;
+use Psr\Log\LoggerInterface;
use function json_encode;
use JsonSerializable;
use OC\InitialStateService;
-use OCP\ILogger;
use stdClass;
class InitialStateServiceTest extends TestCase {
@@ -42,7 +42,7 @@ class InitialStateServiceTest extends TestCase {
parent::setUp();
$this->service = new InitialStateService(
- $this->createMock(ILogger::class),
+ $this->createMock(LoggerInterface::class),
$this->createMock(Coordinator::class),
$this->createMock(IServerContainer::class)
);