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

[ticket/11386] Fix failing tests from constructor changes

PHPBB3-11386
This commit is contained in:
Nathaniel Guse
2013-03-02 15:17:51 -06:00
parent 59638a6a7d
commit 91be998223
3 changed files with 5 additions and 4 deletions

View File

@@ -151,7 +151,6 @@ class phpbb_functional_test_case extends phpbb_test_case
$config,
$db,
$db_tools,
$manager,
self::$config['table_prefix'] . 'migrations',
$phpbb_root_path,
$php_ext,
@@ -159,6 +158,7 @@ class phpbb_functional_test_case extends phpbb_test_case
array()
);
$extension_manager->set_migrator($migrator);
$migrator->set_extension_manager($extension_manager);
return $extension_manager;
}