1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

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

This commit is contained in:
Marc Alexander
2021-03-04 17:04:17 +01:00
211 changed files with 395 additions and 396 deletions

View File

@@ -128,7 +128,7 @@ class phpbb_test_case_helpers
{
$config = array_merge($config, array(
'dbms' => 'phpbb\db\driver\sqlite3',
'dbhost' => dirname(__FILE__) . '/../phpbb_unit_tests.sqlite3', // filename
'dbhost' => __DIR__ . '/../phpbb_unit_tests.sqlite3', // filename
'dbport' => '',
'dbname' => '',
'dbuser' => '',
@@ -143,7 +143,7 @@ class phpbb_test_case_helpers
}
else
{
$test_config = dirname(__FILE__) . '/../test_config.php';
$test_config = __DIR__ . '/../test_config.php';
}
$config_php_file = new \phpbb\config_php_file('', '');