This commit is contained in:
Robin Appelman 2020-03-03 15:44:39 +01:00
Родитель a14b33df9b
Коммит 2f34b234d2
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -26,6 +26,7 @@ use OCA\Guests\Config;
use OCA\Guests\GuestManager;
use OCP\App\IAppManager;
use OCP\IL10N;
use OCP\ILogger;
use OCP\IURLGenerator;
use OCP\IUser;
use PHPUnit\Framework\MockObject\MockObject;
@ -62,7 +63,8 @@ class AppWhitelistTest extends TestCase {
$this->guestManager,
$this->l10n,
$this->appManager,
$this->urlGenerator
$this->urlGenerator,
$this->createMock(ILogger::class)
);
}