aboutsummaryrefslogtreecommitdiffstats
path: root/tests/filesystem/clean_path_test.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-09-13 09:52:02 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2013-09-13 09:52:02 -0500
commitaa710df2db2512f6065f91dcf8b5fc7d100edf41 (patch)
tree89ae712128b68db41237e032315dcbf17dea1108 /tests/filesystem/clean_path_test.php
parenta194e6ce7afe373fcb89ab26b3d057f60d10fa3d (diff)
downloadforums-aa710df2db2512f6065f91dcf8b5fc7d100edf41.tar
forums-aa710df2db2512f6065f91dcf8b5fc7d100edf41.tar.gz
forums-aa710df2db2512f6065f91dcf8b5fc7d100edf41.tar.bz2
forums-aa710df2db2512f6065f91dcf8b5fc7d100edf41.tar.xz
forums-aa710df2db2512f6065f91dcf8b5fc7d100edf41.zip
[ticket/11832] Create phpbb_symfony_request to handle initiating symfony_request
Now symfony_request is also a service (removed the function phpbb_create_symfony_request). Inject symfony request into filesystem Cleanup for the tests PHPBB3-11832
Diffstat (limited to 'tests/filesystem/clean_path_test.php')
-rw-r--r--tests/filesystem/clean_path_test.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/filesystem/clean_path_test.php b/tests/filesystem/clean_path_test.php
index 88352838bb..b79668fc33 100644
--- a/tests/filesystem/clean_path_test.php
+++ b/tests/filesystem/clean_path_test.php
@@ -14,7 +14,12 @@ class phpbb_filesystem_clean_path_test extends phpbb_test_case
public function setUp()
{
parent::setUp();
- $this->filesystem = new phpbb_filesystem(__DIR__ . './../../phpBB/');
+ $this->filesystem = new phpbb_filesystem(
+ new phpbb_symfony_request(
+ new phpbb_mock_request()
+ ),
+ dirname(__FILE__) . './../../phpBB/'
+ );
}
public function clean_path_data()