Skip to content
Snippets Groups Projects
Commit 9a2233e5 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst Committed by Tim van Dijen
Browse files

Fix test for removed template

parent 5706963f
No related branches found
No related tags found
No related merge requests found
...@@ -33,8 +33,8 @@ class TemplateTest extends TestCase ...@@ -33,8 +33,8 @@ class TemplateTest extends TestCase
public function testTemplateModuleNamespace(): void public function testTemplateModuleNamespace(): void
{ {
$c = Configuration::loadFromArray([], '', 'simplesaml'); $c = Configuration::loadFromArray([], '', 'simplesaml');
$t = new Template($c, 'core:login'); $t = new Template($c, 'core:welcome');
$this->assertEquals('core:login.twig', $t->getTemplateName()); $this->assertEquals('core:welcome.twig', $t->getTemplateName());
} }
public function testGetEntityDisplayNameBasic(): void public function testGetEntityDisplayNameBasic(): void
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment