From 273b11e1b4685046cce5d85c3883e671775a14d0 Mon Sep 17 00:00:00 2001 From: Ribas160 Date: Mon, 21 Jul 2025 09:30:30 +0300 Subject: [PATCH] Fix bootstrap template fallback in unit tests --- tst/TemplateSwitcherTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tst/TemplateSwitcherTest.php b/tst/TemplateSwitcherTest.php index 482f23a1..16aec6b0 100644 --- a/tst/TemplateSwitcherTest.php +++ b/tst/TemplateSwitcherTest.php @@ -10,7 +10,7 @@ class TemplateSwitcherTest extends TestCase { $conf = new Configuration; - $defaultTemplateFallback = 'bootstrap'; + $defaultTemplateFallback = 'bootstrap5'; $existingTemplateFallback = 'bootstrap-dark'; $wrongBootstrapTemplateFallback = 'bootstrap-wrong'; $wrongTemplateFallback = 'wrong-template'; @@ -38,7 +38,7 @@ class TemplateSwitcherTest extends TestCase public function testGetTemplate() { - $defaultTemplateFallback = 'bootstrap'; + $defaultTemplateFallback = 'bootstrap5'; $customTemplate = 'bootstrap-dark'; $customWrongTemplate = 'bootstrap-wrong';