diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-01-25 17:10:43 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-01-25 17:10:43 +0100 |
commit | 7203f39f87b7910d8565eccca2523313cacf828f (patch) | |
tree | 2b753c34923a261939d4a867f860c5d8eaa63242 /tests/test_framework | |
parent | 01607be42a1c8fe2964c0c19a23473ccb5162801 (diff) | |
download | forums-7203f39f87b7910d8565eccca2523313cacf828f.tar forums-7203f39f87b7910d8565eccca2523313cacf828f.tar.gz forums-7203f39f87b7910d8565eccca2523313cacf828f.tar.bz2 forums-7203f39f87b7910d8565eccca2523313cacf828f.tar.xz forums-7203f39f87b7910d8565eccca2523313cacf828f.zip |
[ticket/11295] Correct cases: replace postgres with phpbb_db_driver_postgres.
PHPBB3-11295
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/phpbb_database_test_connection_manager.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_framework/phpbb_database_test_connection_manager.php b/tests/test_framework/phpbb_database_test_connection_manager.php index c9bdd185d6..29058cc815 100644 --- a/tests/test_framework/phpbb_database_test_connection_manager.php +++ b/tests/test_framework/phpbb_database_test_connection_manager.php @@ -186,7 +186,7 @@ class phpbb_database_test_connection_manager $this->purge_extras(); break; - case 'postgres': + case 'phpbb_db_driver_postgres': $this->connect(); // Drop all of the tables foreach ($this->get_tables() as $table) @@ -429,7 +429,7 @@ class phpbb_database_test_connection_manager } break; - case 'postgres': + case 'phpbb_db_driver_postgres': $sql = 'SELECT sequence_name FROM information_schema.sequences'; $result = $this->pdo->query($sql); |