aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_database_test_case.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-03-29 16:29:33 -0400
committerNils Adermann <naderman@naderman.de>2014-03-29 16:29:33 -0400
commit308e8b0c9689334ef45fad9a9ed0f0ae63746bc7 (patch)
tree8f31cf74280c12ef0aae139b24e1ed78207b8445 /tests/test_framework/phpbb_database_test_case.php
parentf426fa02951b5131f77ad2c4596a0bd87ef23d84 (diff)
parent8824a53b0a539d63fe10e5e12ef1889fe90d4187 (diff)
downloadforums-308e8b0c9689334ef45fad9a9ed0f0ae63746bc7.tar
forums-308e8b0c9689334ef45fad9a9ed0f0ae63746bc7.tar.gz
forums-308e8b0c9689334ef45fad9a9ed0f0ae63746bc7.tar.bz2
forums-308e8b0c9689334ef45fad9a9ed0f0ae63746bc7.tar.xz
forums-308e8b0c9689334ef45fad9a9ed0f0ae63746bc7.zip
Merge remote-tracking branch 'github-nickvergessen/ticket/11459' into develop-ascraeus
* github-nickvergessen/ticket/11459: (21 commits) [ticket/11459] Make 3.1.0-dev migration depend on migrations_table [ticket/11459] Move $supported_dbms to beginning of create schema file [ticket/11459] Fix missing constant CONFIG_TABLE for sql_create_index() [ticket/11459] Fix auth provider test [ticket/11459] Correctly set up the database from schema in unit tests [ticket/11459] Install DB schema from json file [ticket/11459] Clean up a little more [ticket/11459] Do not add table schema to database schema files [ticket/11459] Create schema.json from migration files [ticket/11459] Do not take files of extensions into account [ticket/11459] Pass array with migration class names to schema generator [ticket/11459] Refresh schema files [ticket/11459] Remove spaces from the end of lines in MSSQL [ticket/11459] Correctly handle index column length [ticket/11459] Add migration for migrations table [ticket/11459] Update doc blocks [ticket/11459] Remove old schema file [ticket/11459] Update schema files with new script [ticket/11459] Use new migration/schema_generator to create schema files [ticket/11459] Add Schema from 3.0.0 ...
Diffstat (limited to 'tests/test_framework/phpbb_database_test_case.php')
-rw-r--r--tests/test_framework/phpbb_database_test_case.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_database_test_case.php b/tests/test_framework/phpbb_database_test_case.php
index 4c2e9ff600..aacdb1bef4 100644
--- a/tests/test_framework/phpbb_database_test_case.php
+++ b/tests/test_framework/phpbb_database_test_case.php
@@ -138,7 +138,7 @@ abstract class phpbb_database_test_case extends PHPUnit_Extensions_Database_Test
if (!self::$already_connected)
{
- $manager->load_schema();
+ $manager->load_schema($this->new_dbal());
self::$already_connected = true;
}