1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-18 22:58:10 +01:00

[ticket/11700] Fix expected class name output from dbms convert

PHPBB3-11700
This commit is contained in:
Nils Adermann 2013-09-10 15:19:35 +02:00
parent e10c3d8c08
commit 239381b946

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);