diff options
author | Joas Schilling <coding@schilljs.com> | 2017-09-04 17:01:31 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2017-09-04 17:01:31 +0200 |
commit | dea011243eb4410a14067f618813e81257f7f84d (patch) | |
tree | abbef1ae43629aa5ee2eff15e8a975688367b5a6 /tests | |
parent | 6dbb64c4a2748467a61e5ed7821ac6526c86a093 (diff) | |
download | nextcloud-server-dea011243eb4410a14067f618813e81257f7f84d.tar.gz nextcloud-server-dea011243eb4410a14067f618813e81257f7f84d.zip |
Fix unit tests
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Mail/MailerTest.php | 2 |
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'))); } } |