From 47c986a78142d49448a02fdfc6c9695d408e1bb9 Mon Sep 17 00:00:00 2001 From: rugk Date: Mon, 23 Feb 2026 13:55:16 +0000 Subject: [PATCH] fix(test): fix directory separator actually being used everywhere --- tst/Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tst/Bootstrap.php b/tst/Bootstrap.php index 857f1a59..ea83e791 100644 --- a/tst/Bootstrap.php +++ b/tst/Bootstrap.php @@ -26,7 +26,7 @@ if (!defined('CONF_SAMPLE')) { define('CONF_SAMPLE', PATH . 'cfg' . DIRECTORY_SEPARATOR . 'conf.sample.php'); } -require PATH . 'vendor/autoload.php'; +require PATH . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; Helper::updateSubresourceIntegrity(); TemplateSwitcher::setAvailableTemplates(Configuration::getDefaults()['main']['availabletemplates']);