aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_database_test_case.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2013-09-16 04:01:18 +0200
committerNils Adermann <naderman@naderman.de>2013-09-16 04:01:18 +0200
commit005c5118cf89c6b09d4ff1b6e4139235e86bcdfb (patch)
treee96836289f5ca2bcd6ec7342514c3a32622132f0 /tests/test_framework/phpbb_database_test_case.php
parentacea8f5c0a5d0901b25e4055dd6dfc4b8bebe707 (diff)
downloadforums-005c5118cf89c6b09d4ff1b6e4139235e86bcdfb.tar
forums-005c5118cf89c6b09d4ff1b6e4139235e86bcdfb.tar.gz
forums-005c5118cf89c6b09d4ff1b6e4139235e86bcdfb.tar.bz2
forums-005c5118cf89c6b09d4ff1b6e4139235e86bcdfb.tar.xz
forums-005c5118cf89c6b09d4ff1b6e4139235e86bcdfb.zip
[ticket/11700] travis has hardcoded driver class names without namespaces
PHPBB3-11700
Diffstat (limited to 'tests/test_framework/phpbb_database_test_case.php')
-rw-r--r--tests/test_framework/phpbb_database_test_case.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_database_test_case.php b/tests/test_framework/phpbb_database_test_case.php
index 1a9edcb181..4c2e9ff600 100644
--- a/tests/test_framework/phpbb_database_test_case.php
+++ b/tests/test_framework/phpbb_database_test_case.php
@@ -82,7 +82,7 @@ abstract class phpbb_database_test_case extends PHPUnit_Extensions_Database_Test
$db_config = $this->get_database_config();
// Firebird requires table and column names to be uppercase
- if ($db_config['dbms'] == '\phpbb\db\driver\firebird')
+ if ($db_config['dbms'] == 'phpbb\db\driver\firebird')
{
$xml_data = file_get_contents($path);
$xml_data = preg_replace_callback('/(?:(<table name="))([a-z_]+)(?:(">))/', 'phpbb_database_test_case::to_upper', $xml_data);