aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2012-10-25 13:02:56 -0700
committerNathan Guse <nathaniel.guse@gmail.com>2013-01-09 16:40:00 -0600
commitc802f2a66c577781036b7bfd6d6689159028c3a6 (patch)
treedbf6be4bbe68636084fd3241f1de42c4b0e2f54f /tests/dbal
parent8645321f40d0b13de6201688c69f9f05bc649dcf (diff)
downloadforums-c802f2a66c577781036b7bfd6d6689159028c3a6.tar
forums-c802f2a66c577781036b7bfd6d6689159028c3a6.tar.gz
forums-c802f2a66c577781036b7bfd6d6689159028c3a6.tar.bz2
forums-c802f2a66c577781036b7bfd6d6689159028c3a6.tar.xz
forums-c802f2a66c577781036b7bfd6d6689159028c3a6.zip
[feature/migrations] Standard vars for migrations and run sql with feedback
PHPBB3-9737
Diffstat (limited to 'tests/dbal')
-rw-r--r--tests/dbal/migrator_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dbal/migrator_test.php b/tests/dbal/migrator_test.php
index dd194d7c05..898a197dfd 100644
--- a/tests/dbal/migrator_test.php
+++ b/tests/dbal/migrator_test.php
@@ -32,7 +32,7 @@ class phpbb_dbal_migrator_test extends phpbb_database_test_case
$this->db = $this->new_dbal();
$this->db_tools = new phpbb_db_tools($this->db);
- $this->migrator = new phpbb_db_migrator($this->db, $this->db_tools, MIGRATIONS_TABLE);
+ $this->migrator = new phpbb_db_migrator($this->db, $this->db_tools, 'phpbb_', MIGRATIONS_TABLE, 'phpBB/', '.php');
}
public function tearDown()