diff options
author | Joas Schilling <coding@schilljs.com> | 2017-04-12 11:52:58 +0200 |
---|---|---|
committer | Bjoern Schiessle <bjoern@schiessle.org> | 2017-04-12 17:16:26 +0200 |
commit | 1c8c62272c6862405c435e015c107b1767e43b9b (patch) | |
tree | 2b6cc6d8a951ffaac37c00c808f5299544d8e7bb /tests/lib/Mail | |
parent | 506c7731a6168e35bff28c32d9bea933aee907d4 (diff) | |
download | nextcloud-server-1c8c62272c6862405c435e015c107b1767e43b9b.tar.gz nextcloud-server-1c8c62272c6862405c435e015c107b1767e43b9b.zip |
Use instance name as alt-text
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Mail')
-rw-r--r-- | tests/lib/Mail/EMailTemplateTest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/Mail/EMailTemplateTest.php b/tests/lib/Mail/EMailTemplateTest.php index 664da6c17e5..f9e1ecf29ca 100644 --- a/tests/lib/Mail/EMailTemplateTest.php +++ b/tests/lib/Mail/EMailTemplateTest.php @@ -62,6 +62,10 @@ class EMailTemplateTest extends TestCase { ->expects($this->any()) ->method('getLogo') ->willReturn('/img/logo-mail-header.png'); + $this->defaults + ->expects($this->any()) + ->method('getName') + ->willReturn('TestCloud'); $this->urlGenerator ->expects($this->once()) ->method('getAbsoluteURL') |