aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework
diff options
context:
space:
mode:
authorPatrick Webster <noxwizard@phpbb.com>2012-04-12 20:10:20 -0500
committerPatrick Webster <noxwizard@phpbb.com>2012-05-08 04:31:32 -0500
commitceacb63abfdc8144ce88c0d9ce763ccc74836be5 (patch)
tree18d42b42c3d4487eae310c24c8893b30c518888f /tests/test_framework
parent9bb2785da0c84bcc4a95f737b7da14c58c5d4380 (diff)
downloadforums-ceacb63abfdc8144ce88c0d9ce763ccc74836be5.tar
forums-ceacb63abfdc8144ce88c0d9ce763ccc74836be5.tar.gz
forums-ceacb63abfdc8144ce88c0d9ce763ccc74836be5.tar.bz2
forums-ceacb63abfdc8144ce88c0d9ce763ccc74836be5.tar.xz
forums-ceacb63abfdc8144ce88c0d9ce763ccc74836be5.zip
[ticket/10678] Lowercase class name, adjust comment width
PHPBB3-10678
Diffstat (limited to 'tests/test_framework')
-rw-r--r--tests/test_framework/phpbb_database_connection_helper.php2
-rw-r--r--tests/test_framework/phpbb_database_test_connection_manager.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_framework/phpbb_database_connection_helper.php b/tests/test_framework/phpbb_database_connection_helper.php
index fbb85784f8..5eba2e7a2e 100644
--- a/tests/test_framework/phpbb_database_connection_helper.php
+++ b/tests/test_framework/phpbb_database_connection_helper.php
@@ -14,7 +14,7 @@
*
* This is used in the custom PHPUnit ODBC driver
*/
-class phpbb_database_connection_ODBC_PDO_wrapper extends PDO
+class phpbb_database_connection_odbc_pdo_wrapper extends PDO
{
// Name of the driver being used (i.e. mssql, firebird)
public $driver = '';
diff --git a/tests/test_framework/phpbb_database_test_connection_manager.php b/tests/test_framework/phpbb_database_test_connection_manager.php
index 3c4a112d0d..8e214121f3 100644
--- a/tests/test_framework/phpbb_database_test_connection_manager.php
+++ b/tests/test_framework/phpbb_database_test_connection_manager.php
@@ -97,13 +97,13 @@ class phpbb_database_test_connection_manager
{
case 'mssql':
case 'mssql_odbc':
- $this->pdo = new phpbb_database_connection_ODBC_PDO_wrapper('mssql', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
+ $this->pdo = new phpbb_database_connection_odbc_pdo_wrapper('mssql', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
break;
case 'firebird':
if (!empty($this->config['custom_dsn']))
{
- $this->pdo = new phpbb_database_connection_ODBC_PDO_wrapper('firebird', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
+ $this->pdo = new phpbb_database_connection_odbc_pdo_wrapper('firebird', 0, $dsn, $this->config['dbuser'], $this->config['dbpasswd']);
break;
}
// Fall through if they're using the firebird PDO driver and not the generic ODBC driver