aboutsummaryrefslogtreecommitdiffstats
path: root/tests/extension/metadata_manager_test.php
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2013-03-04 15:22:29 -0500
committerDavid King <imkingdavid@gmail.com>2013-03-04 15:22:29 -0500
commit1148f3fca51efb60e536f2fe0d51880610f0812b (patch)
tree1645796b4357b5a96c37654eb38d8562c664b67d /tests/extension/metadata_manager_test.php
parent1a8f72fd659b6c3cc3fd1c59446cd1663a89b110 (diff)
parentc1840c78c5ea2967dfc1912665ec19ebc25c22c6 (diff)
downloadforums-1148f3fca51efb60e536f2fe0d51880610f0812b.tar
forums-1148f3fca51efb60e536f2fe0d51880610f0812b.tar.gz
forums-1148f3fca51efb60e536f2fe0d51880610f0812b.tar.bz2
forums-1148f3fca51efb60e536f2fe0d51880610f0812b.tar.xz
forums-1148f3fca51efb60e536f2fe0d51880610f0812b.zip
Merge remote-tracking branch 'EXreaction/ticket/11386-3' into develop
# By Nathaniel Guse # Via Nathaniel Guse * EXreaction/ticket/11386-3: [ticket/11386] Fix missing ; [ticket/11386] Send list of migrations instead of using load_migrations
Diffstat (limited to 'tests/extension/metadata_manager_test.php')
-rw-r--r--tests/extension/metadata_manager_test.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/extension/metadata_manager_test.php b/tests/extension/metadata_manager_test.php
index 7fb19b67e3..081a32e277 100644
--- a/tests/extension/metadata_manager_test.php
+++ b/tests/extension/metadata_manager_test.php
@@ -49,10 +49,21 @@ class metadata_manager_test extends phpbb_database_test_case
new phpbb_template_context()
);
+ $this->migrator = new phpbb_db_migrator(
+ $this->config,
+ $this->db,
+ $this->db_tools,
+ 'phpbb_migrations',
+ $this->phpbb_root_path,
+ 'php',
+ $this->table_prefix,
+ array()
+ );
$this->extension_manager = new phpbb_extension_manager(
new phpbb_mock_container_builder(),
$this->db,
$this->config,
+ $this->migrator,
'phpbb_ext',
$this->phpbb_root_path,
$this->phpEx,