aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_framework/phpbb_functional_test_case.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-09-13 10:04:35 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-09-13 10:04:35 -0500
commit21624e79fc512fd86177080010bb7d26c71ce3cb (patch)
treeac453dbf1b818f8383029146d5f8ca9a7920ad3e /tests/test_framework/phpbb_functional_test_case.php
parentf8e665751a0926807c8352eb2b2d942247d3c029 (diff)
downloadforums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar
forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar.gz
forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar.bz2
forums-21624e79fc512fd86177080010bb7d26c71ce3cb.tar.xz
forums-21624e79fc512fd86177080010bb7d26c71ce3cb.zip
[ticket/11832] Fix constructions of phpbb_filesystem
PHPBB3-11832
Diffstat (limited to 'tests/test_framework/phpbb_functional_test_case.php')
-rw-r--r--tests/test_framework/phpbb_functional_test_case.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php
index 579e225ed9..48c5649281 100644
--- a/tests/test_framework/phpbb_functional_test_case.php
+++ b/tests/test_framework/phpbb_functional_test_case.php
@@ -203,7 +203,12 @@ class phpbb_functional_test_case extends phpbb_test_case
$container,
$db,
$config,
- new phpbb_filesystem($phpbb_root_path),
+ new phpbb_filesystem(
+ new phpbb_symfony_request(
+ new phpbb_mock_request()
+ ),
+ $phpbb_root_path
+ ),
self::$config['table_prefix'] . 'ext',
dirname(__FILE__) . '/',
$php_ext,