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/Integration/Db/AliasMapperTest.php')
-rw-r--r--tests/Integration/Db/AliasMapperTest.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Integration/Db/AliasMapperTest.php b/tests/Integration/Db/AliasMapperTest.php
index ed79edf1e..96be70a0d 100644
--- a/tests/Integration/Db/AliasMapperTest.php
+++ b/tests/Integration/Db/AliasMapperTest.php
@@ -77,6 +77,7 @@ class AliasMapperTest extends TestCase {
$this->alias->setAccountId($a->getId());
$this->alias->setAlias('alias@marvel.com');
$this->alias->setName('alias');
+ $this->alias->setSignature('Kind regards<br>Alias');
/** @var Alias $b */
$b = $this->mapper->insert($this->alias);
@@ -87,12 +88,14 @@ class AliasMapperTest extends TestCase {
'accountId' => $this->alias->getAccountId(),
'name' => $this->alias->getName(),
'alias' => $this->alias->getAlias(),
- 'id' => $this->alias->getId()
+ 'id' => $this->alias->getId(),
+ 'signature' => $this->alias->getSignature(),
], [
'accountId' => $result->getAccountId(),
'name' => $result->getName(),
'alias' => $result->getAlias(),
- 'id' => $result->getId()
+ 'id' => $result->getId(),
+ 'signature' => $this->alias->getSignature(),
]
);
}