diff --git a/tests/Controller/AliasesControllerTest.php b/tests/Controller/AliasesControllerTest.php index 4b90d688557f42819bd5ea462322a3226637b96b..422af8861180cbedd483d77976a9f94f62e3755a 100644 --- a/tests/Controller/AliasesControllerTest.php +++ b/tests/Controller/AliasesControllerTest.php @@ -36,6 +36,7 @@ class AliasesControllerTest extends PHPUnit_Framework_TestCase { private $alias; public function setUp() { + parent::setUp(); $this->request = $this->getMockBuilder('OCP\IRequest') ->getMock(); $this->aliasService = $this->getMockBuilder('OCA\Mail\Service\AliasesService') diff --git a/tests/Controller/FoldersControllerTest.php b/tests/Controller/FoldersControllerTest.php index 2affcf0df257e47c18a5b646047543dbb0e01fb1..8f41fcd9d4c6c143c87ce5b38e48cef03db9ebf8 100644 --- a/tests/Controller/FoldersControllerTest.php +++ b/tests/Controller/FoldersControllerTest.php @@ -56,6 +56,7 @@ class FoldersControllerTest extends TestCase { private $controller; public function setUp() { + parent::setUp(); $this->request = $this->createMock(IRequest::class); $this->accountService = $this->createMock(AccountService::class); $this->mailManager = $this->createMock(IMailManager::class);