1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-03 14:17:56 +02:00

[ticket/14036] Fixed mocked web root path

...to match what it would return normally

PHPBB3-14036
This commit is contained in:
JoshyPHP 2015-07-17 19:10:36 +02:00
parent ca141f2e1e
commit 6cc2510cee

View File

@ -441,7 +441,7 @@ class phpbb_test_case_helpers
->getMock();
$path_helper->expects($this->test_case->any())
->method('get_web_root_path')
->will($this->test_case->returnValue('./'));
->will($this->test_case->returnValue('phpBB/'));
$container->set('path_helper', $path_helper);
}