1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-05 07:07:51 +02:00

[ticket/11850] Fix tests

PHPBB3-11850
This commit is contained in:
Nathan Guse 2013-09-30 20:04:32 -05:00
parent 1440517b78
commit 870c293bab

View File

@ -20,13 +20,14 @@ abstract class phpbb_session_test_case extends phpbb_database_test_case
{
parent::setUp();
global $symfony_request, $phpbb_path_helper, $request, $phpbb_root_path, $phpEx;
global $symfony_request, $phpbb_filesystem, $phpbb_path_helper, $request, $phpbb_root_path, $phpEx;
$symfony_request = new \phpbb\symfony_request(
new phpbb_mock_request()
);
$phpbb_filesystem = new \phpbb\filesystem();
$phpbb_path_helper = new \phpbb\path_helper(
$symfony_request,
new \phpbb\filesystem(),
$phpbb_filesystem,
$phpbb_root_path,
$phpEx
);