1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 06:20:46 +02:00

[ticket/11700] Don't prefix dbms classnames with \

PHPBB3-11700
This commit is contained in:
Nils Adermann
2013-09-10 17:45:28 +02:00
parent d297eb4aec
commit bdaf68c113
2 changed files with 38 additions and 38 deletions

View File

@@ -31,7 +31,7 @@ class phpbb_convert_30_dbms_to_31_test extends phpbb_test_case
*/
public function test_convert_30_dbms_to_31($input)
{
$expected = "\\phpbb\\db\\driver\\$input";
$expected = "phpbb\\db\\driver\\$input";
$output = phpbb_convert_30_dbms_to_31($input);