Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_antivirus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/StatusTest.php')
-rw-r--r--tests/StatusTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/StatusTest.php b/tests/StatusTest.php
index fa25daa..cf25352 100644
--- a/tests/StatusTest.php
+++ b/tests/StatusTest.php
@@ -9,7 +9,7 @@
namespace OCA\Files_Antivirus\Tests;
use \OCA\Files_Antivirus\Db\RuleMapper;
-use OCP\ILogger;
+use Psr\Log\LoggerInterface;
/**
* @group DB
@@ -35,7 +35,7 @@ class StatusTest extends TestBase {
// Testing status codes
$testStatus = new \OCA\Files_Antivirus\Status(
$this->ruleMapper,
- $this->createMock(ILogger::class)
+ $this->createMock(LoggerInterface::class)
);
$testStatus->parseResponse('dummy : OK', self::TEST_CLEAN);