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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-09-04 18:01:31 +0300
committerJoas Schilling <coding@schilljs.com>2017-09-04 18:01:31 +0300
commitdea011243eb4410a14067f618813e81257f7f84d (patch)
treeabbef1ae43629aa5ee2eff15e8a975688367b5a6 /tests/lib/Mail
parent6dbb64c4a2748467a61e5ed7821ac6526c86a093 (diff)
Fix unit tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests/lib/Mail')
-rw-r--r--tests/lib/Mail/MailerTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/Mail/MailerTest.php b/tests/lib/Mail/MailerTest.php
index a7226b9ecd6..f647b966f1f 100644
--- a/tests/lib/Mail/MailerTest.php
+++ b/tests/lib/Mail/MailerTest.php
@@ -133,6 +133,6 @@ class MailerTest extends TestCase {
}
public function testCreateEMailTemplate() {
- $this->assertSame(EMailTemplate::class, get_class($this->mailer->createEMailTemplate()));
+ $this->assertSame(EMailTemplate::class, get_class($this->mailer->createEMailTemplate('tests.MailerTest')));
}
}