Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Controller/MessagesControllerTest.php')
-rw-r--r--tests/Unit/Controller/MessagesControllerTest.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/Unit/Controller/MessagesControllerTest.php b/tests/Unit/Controller/MessagesControllerTest.php
index 0b215c557..1178a03c4 100644
--- a/tests/Unit/Controller/MessagesControllerTest.php
+++ b/tests/Unit/Controller/MessagesControllerTest.php
@@ -38,7 +38,6 @@ use OCA\Mail\Model\Message;
use OCA\Mail\Service\AccountService;
use OCA\Mail\Service\ItineraryService;
use OCA\Mail\Service\MailManager;
-use OCA\Mail\Service\SyncService;
use OCP\AppFramework\Db\DoesNotExistException;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\ContentSecurityPolicy;
@@ -72,9 +71,6 @@ class MessagesControllerTest extends TestCase {
/** @var ItineraryService|MockObject */
private $itineraryService;
- /** @var SyncService|MockObject */
- private $syncService;
-
/** @var string */
private $userId;
@@ -120,7 +116,6 @@ class MessagesControllerTest extends TestCase {
$this->mailManager = $this->createMock(IMailManager::class);
$this->mailSearch = $this->createMock(IMailSearch::class);
$this->itineraryService = $this->createMock(ItineraryService::class);
- $this->syncService = $this->createMock(SyncService::class);
$this->userId = 'john';
$this->userFolder = $this->createMock(Folder::class);
$this->request = $this->createMock(Request::class);
@@ -145,7 +140,6 @@ class MessagesControllerTest extends TestCase {
$this->mailManager,
$this->mailSearch,
$this->itineraryService,
- $this->syncService,
$this->userId,
$this->userFolder,
$this->logger,