From ab01b8b5928a253bbbdb17d4c01f306429230e95 Mon Sep 17 00:00:00 2001 From: Brian French Date: Wed, 21 Aug 2024 16:52:35 -0400 Subject: [PATCH] Update plugin_bootstrap.php --- tests/plugin_bootstrap.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/plugin_bootstrap.php b/tests/plugin_bootstrap.php index d2dec9d..06f8262 100644 --- a/tests/plugin_bootstrap.php +++ b/tests/plugin_bootstrap.php @@ -42,8 +42,8 @@ * constants */ // use the application's/plugin's test app if it exists - if (file_exists(PLUGIN_ROOT . DS . 'test_app' . DS . 'config' . DS . 'paths.php')) { - require PLUGIN_ROOT . DS . 'test_app' . DS . 'config' . DS . 'paths.php'; + if (file_exists(PLUGIN_ROOT . DS . 'tests' . DS . 'test_app' . DS . 'config' . DS . 'paths.php')) { + require PLUGIN_ROOT . DS . 'tests' . DS . 'test_app' . DS . 'config' . DS . 'paths.php'; } else { // otherwise use the one here both for testing this plugin, and for ones that don't have a test_app. require __DIR__ . DS . 'test_app' . DS . 'config' . DS . 'paths.php';