diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-02-25 16:27:51 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-02-25 16:37:20 +0100 |
commit | c8ad006b71f0807b96be81fcd537fffee76551b3 (patch) | |
tree | 3b0f15555cc6c424c83c8a9c06a08e74c8e2686b /tests/test_framework | |
parent | 904bcb86a054ab6256da565098eb9bd8ab20414b (diff) | |
download | forums-c8ad006b71f0807b96be81fcd537fffee76551b3.tar forums-c8ad006b71f0807b96be81fcd537fffee76551b3.tar.gz forums-c8ad006b71f0807b96be81fcd537fffee76551b3.tar.bz2 forums-c8ad006b71f0807b96be81fcd537fffee76551b3.tar.xz forums-c8ad006b71f0807b96be81fcd537fffee76551b3.zip |
[ticket/10060] Fix test suite under MySQL
Regression from PHPBB3-10043, a typo caused the database tests to fail
under MySQL.
PHPBB3-10060
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) { |