mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
Merge pull request #4659 from marc1706/ticket/15036
[ticket/15036] Unlink install_config during functional testing * marc1706/ticket/15036: [ticket/15036] Unlink install_config during functional testing
This commit is contained in:
commit
cf6a4738b1
1 changed files with 7 additions and 0 deletions
|
@ -291,6 +291,13 @@ class phpbb_functional_test_case extends phpbb_test_case
|
|||
}
|
||||
}
|
||||
|
||||
$install_config_file = $phpbb_root_path . 'store/install_config.php';
|
||||
|
||||
if (file_exists($install_config_file))
|
||||
{
|
||||
unlink($install_config_file);
|
||||
}
|
||||
|
||||
$container_builder = new \phpbb\di\container_builder($phpbb_root_path, $phpEx);
|
||||
$container = $container_builder
|
||||
->with_environment('installer')
|
||||
|
|
Loading…
Add table
Reference in a new issue