From dea011243eb4410a14067f618813e81257f7f84d Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 4 Sep 2017 17:01:31 +0200 Subject: [PATCH] Fix unit tests Signed-off-by: Joas Schilling --- tests/lib/Mail/MailerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/Mail/MailerTest.php b/tests/lib/Mail/MailerTest.php index a7226b9ecd..f647b966f1 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'))); } }