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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2022-03-14 15:23:30 +0300
committerGitHub <noreply@github.com>2022-03-14 15:23:30 +0300
commita74248b0a050820516c91c3af4b9fe6042e86ac7 (patch)
tree4011a139a7b652a3358e9b054ecc22ba1904ea3a
parentbd89a390765d7ddcabc44aacba8dd694c26fcb15 (diff)
parent6e45b298bf773f4a5e8e0b49bb7594d0cfadcdce (diff)
Merge pull request #31566 from nextcloud/fix/unit-audit
Fix unit tests by importing the class
-rw-r--r--apps/admin_audit/tests/Actions/SecurityTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/admin_audit/tests/Actions/SecurityTest.php b/apps/admin_audit/tests/Actions/SecurityTest.php
index 604d2276fb2..d45cbb75a64 100644
--- a/apps/admin_audit/tests/Actions/SecurityTest.php
+++ b/apps/admin_audit/tests/Actions/SecurityTest.php
@@ -28,11 +28,11 @@ namespace OCA\AdminAudit\Tests\Actions;
use OCA\AdminAudit\Actions\Security;
use OCP\IUser;
-use Psr\Log\LoggerInterface;
+use OCA\AdminAudit\AuditLogger;
use Test\TestCase;
class SecurityTest extends TestCase {
- /** @var LoggerInterface|\PHPUnit\Framework\MockObject\MockObject */
+ /** @var AuditLogger|\PHPUnit\Framework\MockObject\MockObject */
private $logger;
/** @var Security */