From a0324bfc2c7c27af57f72fdbed43ef7ba0336e43 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 30 Dec 2022 02:51:25 -0500 Subject: [PATCH] Patched tests tts_setup.php to use tts instead of bs_tts... --- UnitTestFiles/tts_setup.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UnitTestFiles/tts_setup.php b/UnitTestFiles/tts_setup.php index 2a57840..84b7774 100644 --- a/UnitTestFiles/tts_setup.php +++ b/UnitTestFiles/tts_setup.php @@ -30,17 +30,17 @@ class tts_setup { $p_dir = dirname(__DIR__, 1). '/src/'; require_once $p_dir . 'before_main.php'; - \bs_tts\site_helper::set_all_projects(['mockup', 'ex', 'live']); - \bs_tts\site_helper::set_default_project("mockup"); + \tts\site_helper::set_all_projects(['mockup', 'ex', 'live']); + \tts\site_helper::set_default_project("mockup"); - \bs_tts\site_helper::init(PROJECT_BASE_DIR, "", "get", true); + \tts\site_helper::init(PROJECT_BASE_DIR, "", "get", true); require_once PROJECT_BASE_DIR . 'main.php'; } public static function test_route(string $route): void { $PHPUNIT_Testing = true; - \bs_tts\site_helper::init(PROJECT_BASE_DIR, $route, "get", $PHPUNIT_Testing); + \tts\site_helper::init(PROJECT_BASE_DIR, $route, "get", $PHPUNIT_Testing); } public static function do_routes() {