diff options
author | Igor Wiedler <igor@wiedler.ch> | 2012-11-10 11:25:22 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2012-11-10 11:25:22 +0100 |
commit | 195014867ae84fe04ec01c913e38bf1d435590f7 (patch) | |
tree | 2a8264f69a801264a9912828e572782e28a2a897 /tests/test_framework | |
parent | 957508c8b1a71c603c31728dfab79640554c541e (diff) | |
download | forums-195014867ae84fe04ec01c913e38bf1d435590f7.tar forums-195014867ae84fe04ec01c913e38bf1d435590f7.tar.gz forums-195014867ae84fe04ec01c913e38bf1d435590f7.tar.bz2 forums-195014867ae84fe04ec01c913e38bf1d435590f7.tar.xz forums-195014867ae84fe04ec01c913e38bf1d435590f7.zip |
[ticket/11183] Remove $load_extensions and weird dl() calls
PHPBB3-11183
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index d002615e8c..2d44bfc359 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -199,7 +199,7 @@ class phpbb_functional_test_case extends phpbb_test_case $this->do_request('create_table', $data); $this->do_request('config_file', $data); - file_put_contents($phpbb_root_path . "config.$phpEx", phpbb_create_config_file_data($data, self::$config['dbms'], array(), true, true)); + file_put_contents($phpbb_root_path . "config.$phpEx", phpbb_create_config_file_data($data, self::$config['dbms'], true, true)); $this->do_request('final', $data); copy($phpbb_root_path . "config.$phpEx", $phpbb_root_path . "config_test.$phpEx"); |