From afd616c38d7b64aacff917d54ae75cd75755404a Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Fri, 17 Apr 2020 09:24:11 +0100 Subject: [PATCH] Issue #3126694 by Neslee Canil Pinto: Replace tpl.twig with html.twig in ThemeTest --- core/modules/system/tests/src/Kernel/Theme/ThemeTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php b/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php index f2e45a0e1564..bda945fd2835 100644 --- a/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php +++ b/core/modules/system/tests/src/Kernel/Theme/ThemeTest.php @@ -152,7 +152,7 @@ public function testDrupalRenderChildren() { public function testFindThemeTemplates() { $registry = $this->container->get('theme.registry')->get(); $templates = drupal_find_theme_templates($registry, '.html.twig', drupal_get_path('theme', 'test_theme')); - $this->assertEqual($templates['node__1']['template'], 'node--1', 'Template node--1.tpl.twig was found in test_theme.'); + $this->assertEqual($templates['node__1']['template'], 'node--1', 'Template node--1.html.twig was found in test_theme.'); } } -- GitLab