From 5fb090574bb1639a8cdb715f01efc078d52620f9 Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Sat, 29 Mar 2014 18:10:27 -0700 Subject: [PATCH] Fix ext_db_test_case to work with new changes to phpb_test_Case --- tests/framework/extension_database_test_case.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/framework/extension_database_test_case.php b/tests/framework/extension_database_test_case.php index c88ee75..64df688 100644 --- a/tests/framework/extension_database_test_case.php +++ b/tests/framework/extension_database_test_case.php @@ -29,7 +29,7 @@ public function getConnection() if (!self::$already_connected) { // Install phpBB's schema - $manager->load_schema(); + $manager->load_schema($this->new_dbal()); // We must create a config file to be able to create the container $this->create_config_file($phpbb_root_path, $phpEx);