aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_database_test_connection_manager.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-01-25 17:10:43 +0100
committerAndreas Fischer <bantu@phpbb.com>2013-01-25 17:10:43 +0100
commit7203f39f87b7910d8565eccca2523313cacf828f (patch)
tree2b753c34923a261939d4a867f860c5d8eaa63242 /tests/test_framework/phpbb_database_test_connection_manager.php
parent01607be42a1c8fe2964c0c19a23473ccb5162801 (diff)
downloadforums-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/phpbb_database_test_connection_manager.php')
-rw-r--r--tests/test_framework/phpbb_database_test_connection_manager.php4
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);