diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2011-02-25 16:59:12 +0100 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2011-02-25 16:59:12 +0100 |
| commit | cacead09a5447fdec9fcb9965b3cb667dcfe2032 (patch) | |
| tree | 15b6314377e01b4bb2775af93961fe7b8dd88c7f /tests/test_framework | |
| parent | ee0db1a1d5f0150016d0971057f889f2366f9856 (diff) | |
| parent | 0c23d6c06932cd57a819b74b6ae1049984a66a34 (diff) | |
| download | forums-cacead09a5447fdec9fcb9965b3cb667dcfe2032.tar forums-cacead09a5447fdec9fcb9965b3cb667dcfe2032.tar.gz forums-cacead09a5447fdec9fcb9965b3cb667dcfe2032.tar.bz2 forums-cacead09a5447fdec9fcb9965b3cb667dcfe2032.tar.xz forums-cacead09a5447fdec9fcb9965b3cb667dcfe2032.zip | |
Merge branch 'develop-olympus' into develop
* develop-olympus:
[ticket/10060] Fix test suite under MySQL
Diffstat (limited to 'tests/test_framework')
| -rw-r--r-- | tests/test_framework/phpbb_database_test_connection_manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_database_test_connection_manager.php b/tests/test_framework/phpbb_database_test_connection_manager.php index 6c06857fbc..a7559e2183 100644 --- a/tests/test_framework/phpbb_database_test_connection_manager.php +++ b/tests/test_framework/phpbb_database_test_connection_manager.php @@ -123,7 +123,7 @@ class phpbb_database_test_connection_manager try { - $this->pdo->exec('DROP DATABASE ' . $config['dbname']); + $this->pdo->exec('DROP DATABASE ' . $this->config['dbname']); } catch (PDOException $e) { |
