aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/migrator/schema_generator_test.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/migrator/schema_generator_test.php b/tests/migrator/schema_generator_test.php
index 9f9213779c..4bac447229 100644
--- a/tests/migrator/schema_generator_test.php
+++ b/tests/migrator/schema_generator_test.php
@@ -7,20 +7,14 @@
*
*/
-class schmema_generator_test extends phpbb_database_test_case
+class schmema_generator_test extends phpbb_test_case
{
- // Use some bogus fixture as we don't actually need to access the database
- public function getDataSet()
- {
- return $this->createXMLDataSet(dirname(__FILE__) . '/../dbal/fixtures/config.xml');
- }
-
public function setUp()
{
parent::setUp();
$this->config = new \phpbb\config\config(array());
- $this->db = $this->new_dbal();
+ $this->db = new \phpbb\db\driver\sqlite();
$this->db_tools = new \phpbb\db\tools($this->db);
$this->table_prefix = 'phpbb_';
}