diff options
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/tests/unit/Comments/RootCollectionTest.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/tests/unit/Comments/RootCollectionTest.php b/apps/dav/tests/unit/Comments/RootCollectionTest.php index 8df7dd70dd3..e908daaf3dd 100644 --- a/apps/dav/tests/unit/Comments/RootCollectionTest.php +++ b/apps/dav/tests/unit/Comments/RootCollectionTest.php @@ -35,6 +35,7 @@ use OCP\ILogger; use OCP\IUser; use OCP\IUserManager; use OCP\IUserSession; +use Psr\Log\LoggerInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; class RootCollectionTest extends \Test\TestCase { @@ -77,7 +78,7 @@ class RootCollectionTest extends \Test\TestCase { new EventDispatcher( new \Symfony\Component\EventDispatcher\EventDispatcher(), \OC::$server, - $this->logger + $this->createMock(LoggerInterface::class) ), $this->logger ); |