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:23:12 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-04-10 09:26:32 +0300
commitec28e2b85cbcd0065384339928e59bc1945c3aed (patch)
tree17ec95ff5ddf121e19947e39a1fb2cdda1bd44a9 /tests
parentc9a325afa58e8358ad64c250bec171a1448fcbaa (diff)
Small cleanup of AccountService
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r--tests/Service/AccountServiceTest.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/Service/AccountServiceTest.php b/tests/Service/AccountServiceTest.php
index 69a5c0564..9efc635fb 100644
--- a/tests/Service/AccountServiceTest.php
+++ b/tests/Service/AccountServiceTest.php
@@ -64,8 +64,7 @@ class AccountServiceTest extends TestCase {
$this->l10n = $this->createMock(IL10N::class);
$this->defaultAccountManager = $this->createMock(Manager::class);
$this->aliasesService = $this->createMock(AliasesService::class);
- $this->accountService = new AccountService($this->mapper, $this->l10n
- , $this->defaultAccountManager, $this->aliasesService);
+ $this->accountService = new AccountService($this->mapper, $this->defaultAccountManager, $this->aliasesService);
$this->account1 = $this->createMock(MailAccount::class);
$this->account2 = $this->createMock(MailAccount::class);