diff options
author | Nils Adermann <naderman@naderman.de> | 2014-02-05 17:52:17 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-02-05 17:52:17 +0100 |
commit | 32bc5d72e424881109e0c86b716e8bd77e41bffc (patch) | |
tree | f5714414117e6024106f56e751c19a3637d6a8fe /tests/test_framework/phpbb_functional_test_case.php | |
parent | 0b6b7fc486055c728a21227a406a3b9a1ac32d38 (diff) | |
parent | be28445b66c8c74f92a50b086fd6b472ecaa963b (diff) | |
download | forums-32bc5d72e424881109e0c86b716e8bd77e41bffc.tar forums-32bc5d72e424881109e0c86b716e8bd77e41bffc.tar.gz forums-32bc5d72e424881109e0c86b716e8bd77e41bffc.tar.bz2 forums-32bc5d72e424881109e0c86b716e8bd77e41bffc.tar.xz forums-32bc5d72e424881109e0c86b716e8bd77e41bffc.zip |
Merge pull request #1995 from EXreaction/ticket/11880
Schema changes can take too long and cause a timeout
Diffstat (limited to 'tests/test_framework/phpbb_functional_test_case.php')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 71d03746a9..55f9cdb947 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -194,7 +194,8 @@ class phpbb_functional_test_case extends phpbb_test_case $phpbb_root_path, $php_ext, self::$config['table_prefix'], - array() + array(), + new \phpbb\db\migration\helper() ); $container = new phpbb_mock_container_builder(); $container->set('migrator', $migrator); |