diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-21 12:41:58 +0100 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-24 16:21:27 +0100 |
commit | 25e7374e805307c100f169db7841a0e43dc43013 (patch) | |
tree | e567b95db8ee962392a79bd75b5f79d69366e739 /apps/files | |
parent | 1809386862ee2c16f9abc1cf2d6972d317c94cbd (diff) | |
download | nextcloud-server-25e7374e805307c100f169db7841a0e43dc43013.tar.gz nextcloud-server-25e7374e805307c100f169db7841a0e43dc43013.zip |
Fix ILogger instances in application tests for core parameters
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/tests/BackgroundJob/ScanFilesTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/tests/BackgroundJob/ScanFilesTest.php b/apps/files/tests/BackgroundJob/ScanFilesTest.php index 04eeff4a30b..5b2d52b48d3 100644 --- a/apps/files/tests/BackgroundJob/ScanFilesTest.php +++ b/apps/files/tests/BackgroundJob/ScanFilesTest.php @@ -28,8 +28,8 @@ use OC\Files\Storage\Temporary; use OCA\Files\BackgroundJob\ScanFiles; use OCP\EventDispatcher\IEventDispatcher; use OCP\IConfig; -use OCP\ILogger; use OCP\IUser; +use Psr\Log\LoggerInterface; use Test\TestCase; use Test\Traits\MountProviderTrait; use Test\Traits\UserTrait; @@ -54,7 +54,7 @@ class ScanFilesTest extends TestCase { $config = $this->createMock(IConfig::class); $dispatcher = $this->createMock(IEventDispatcher::class); - $logger = $this->createMock(ILogger::class); + $logger = $this->createMock(LoggerInterface::class); $connection = \OC::$server->getDatabaseConnection(); $this->mountCache = \OC::$server->getUserMountCache(); |