diff options
| author | Nicofuma <github@nicofuma.fr> | 2015-02-09 17:11:09 +0100 |
|---|---|---|
| committer | Nicofuma <github@nicofuma.fr> | 2015-02-09 17:11:09 +0100 |
| commit | acf3744297303324490c484156f0bf808e532883 (patch) | |
| tree | 5dfae513699ce84bbdf0028842732695df7c7e47 /tests/test_framework/phpbb_functional_test_case.php | |
| parent | b0c910e49c31e086f19f983bb9d7d5051d34fac8 (diff) | |
| parent | 74d1b1812f512ae232a063a2574d62d3f5491f46 (diff) | |
| download | forums-acf3744297303324490c484156f0bf808e532883.tar forums-acf3744297303324490c484156f0bf808e532883.tar.gz forums-acf3744297303324490c484156f0bf808e532883.tar.bz2 forums-acf3744297303324490c484156f0bf808e532883.tar.xz forums-acf3744297303324490c484156f0bf808e532883.zip | |
Merge pull request #3332 from nickvergessen/ticket/10748-mssql
[ticket/10748] Split MS SQL from the db tools file into it's own
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 93876479d5..de18fb2cf2 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -230,7 +230,8 @@ class phpbb_functional_test_case extends phpbb_test_case $config = new \phpbb\config\config(array()); $db = $this->get_db(); - $db_tools = new \phpbb\db\tools\tools($db); + $factory = new \phpbb\db\tools\factory(); + $db_tools = $factory->get($db); $container = new phpbb_mock_container_builder(); $migrator = new \phpbb\db\migrator( |
