1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

Merge branch 'ticket/16891' into ticket/16891-master

This commit is contained in:
Marc Alexander
2022-01-31 21:48:53 +01:00
19 changed files with 80 additions and 25 deletions

View File

@@ -159,6 +159,7 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
$config = new \phpbb\config\config(array('version' => PHPBB_VERSION));
$db = $this->new_dbal();
$db_doctrine = $this->new_doctrine_dbal();
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
$factory = new \phpbb\db\tools\factory();
$finder_factory = new \phpbb\finder\factory(null, false, $phpbb_root_path, $php_ext);
$db_tools = $factory->get($db_doctrine);
@@ -188,7 +189,7 @@ class phpbb_extension_manager_test extends phpbb_database_test_case
$finder_factory,
'phpbb_ext',
__DIR__ . '/',
($with_cache) ? new \phpbb\cache\service(new phpbb_mock_cache(), $config, $db, $phpbb_root_path, $php_ext) : null
($with_cache) ? new \phpbb\cache\service(new phpbb_mock_cache(), $config, $db, $phpbb_dispatcher, $phpbb_root_path, $php_ext) : null
);
}
}