Skip to content

Commit

Permalink
fixup! fix(db): also chunk MariaDB deletes
Browse files Browse the repository at this point in the history
  • Loading branch information
miaulalala committed Sep 12, 2023
1 parent 88ef7ac commit 0247774
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/DataTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
use OCP\IUserSession;
use OCP\Util;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;

/**
* Class DataTest
Expand Down Expand Up @@ -62,7 +62,7 @@ protected function setUp(): void {
$activityManager = $this->createMock(IManager::class);
$this->dbConnection = \OC::$server->get(IDBConnection::class);
$this->realActivityManager = \OC::$server->get(IManager::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->logger = \OC::$server->get(NullLogger::class);

$this->data = new Data(
$activityManager,
Expand Down

0 comments on commit 0247774

Please sign in to comment.