aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal/migrator_test.php
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-03-02 15:17:51 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-03-02 15:18:07 -0600
commit91be99822312d9a83ae4f6849eef864dfd47e4a1 (patch)
treec292105929f7563092bbaecf4ea5d4ea62aaecd2 /tests/dbal/migrator_test.php
parent59638a6a7d873b8ec5b9b2e9e72fdf693bde260a (diff)
downloadforums-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.php5
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()