fix injection NO_CI
Some checks are pending
CI / general_module_workflow_php (push) Waiting to run

This commit is contained in:
Dennis Eichhorn 2024-05-17 19:45:05 +00:00
parent 8f96fe36c7
commit 0cb183c1df

View File

@ -56,7 +56,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase
$this->app->dbPool = $GLOBALS['dbpool']; $this->app->dbPool = $GLOBALS['dbpool'];
$this->app->router = new WebRouter(); $this->app->router = new WebRouter();
$this->app->dispatcher = new Dispatcher($this->app); $this->app->dispatcher = new Dispatcher($this->app);
$this->app->appSettings = new CoreSettings($this->app->dbPool->get('admin')); $this->app->appSettings = new CoreSettings();
$this->moduleManager = new ModuleManager($this->app, __DIR__ . '/../../../Modules/'); $this->moduleManager = new ModuleManager($this->app, __DIR__ . '/../../../Modules/');
} }