diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-03-02 15:17:51 -0600 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-03-02 15:18:07 -0600 |
commit | 91be99822312d9a83ae4f6849eef864dfd47e4a1 (patch) | |
tree | c292105929f7563092bbaecf4ea5d4ea62aaecd2 /tests/dbal/migrator_test.php | |
parent | 59638a6a7d873b8ec5b9b2e9e72fdf693bde260a (diff) | |
download | forums-91be99822312d9a83ae4f6849eef864dfd47e4a1.tar forums-91be99822312d9a83ae4f6849eef864dfd47e4a1.tar.gz forums-91be99822312d9a83ae4f6849eef864dfd47e4a1.tar.bz2 forums-91be99822312d9a83ae4f6849eef864dfd47e4a1.tar.xz forums-91be99822312d9a83ae4f6849eef864dfd47e4a1.zip |
[ticket/11386] Fix failing tests from constructor changes
PHPBB3-11386
Diffstat (limited to 'tests/dbal/migrator_test.php')
-rw-r--r-- | tests/dbal/migrator_test.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/dbal/migrator_test.php b/tests/dbal/migrator_test.php index 6fc08d51f8..b447a81cda 100644 --- a/tests/dbal/migrator_test.php +++ b/tests/dbal/migrator_test.php @@ -58,12 +58,13 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case $this->config, $this->db, $this->db_tools, - $this->extension_manager, 'phpbb_migrations', dirname(__FILE__) . '/../../phpBB/', 'php', - 'phpbb_', $tools + 'phpbb_', + $tools ); + $this->migrator->set_extension_manager($this->extension_manager); } public function test_update() |