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
path: root/tests
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-04-09 23:20:49 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-04-10 09:26:16 +0300
commit8cc33c1f5c0e6f5abf5bd73ab4a9ade31a540731 (patch)
tree3b974783a2379b2867b787f3a9eef43620841882 /tests
parentc9a325afa58e8358ad64c250bec171a1448fcbaa (diff)
Smal cleanup of the AccountsController
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/Controller/AccountsControllerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Controller/AccountsControllerTest.php b/tests/Controller/AccountsControllerTest.php
index f7e77e7ae..9cb2f4909 100644
--- a/tests/Controller/AccountsControllerTest.php
+++ b/tests/Controller/AccountsControllerTest.php
@@ -112,7 +112,7 @@ class AccountsControllerTest extends TestCase {
$this->setupService = $this->createMock(SetupService::class);
$this->controller = new AccountsController($this->appName, $this->request, $this->accountService, $this->groupsIntegration, $this->userId,
- $this->logger, $this->l10n, $this->crypto, $this->aliasesService, $this->transmission, $this->setupService);
+ $this->logger, $this->l10n, $this->aliasesService, $this->transmission, $this->setupService);
$this->account = $this->createMock(Account::class);
$this->accountId = 123;
}