Skip to content
Closed
Prev Previous commit
Next Next commit
fix tests
Signed-off-by: Robin Appelman <robin@icewind.nl>
  • Loading branch information
icewind1991 committed Sep 17, 2023
commit 1f32b18925970a0bc6694c92789f554fee0518d1
4 changes: 3 additions & 1 deletion tests/lib/Diagnostics/EventLoggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

namespace Test\Diagnostics;

use OCP\Profiler\IProfiler;
use Psr\Log\LoggerInterface;
use OC\Diagnostics\EventLogger;
use OC\Log;
Expand All @@ -37,7 +38,8 @@ protected function setUp(): void {
$this->logger = new EventLogger(
$this->createMock(SystemConfig::class),
$this->createMock(LoggerInterface::class),
$this->createMock(Log::class)
$this->createMock(Log::class),
$this->createMock(IProfiler::class),
);
}

Expand Down