diff options
Diffstat (limited to 'tests/path_helper')
| -rw-r--r-- | tests/path_helper/path_helper_test.php | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/tests/path_helper/path_helper_test.php b/tests/path_helper/path_helper_test.php index 73f0e6bafc..007441bc92 100644 --- a/tests/path_helper/path_helper_test.php +++ b/tests/path_helper/path_helper_test.php @@ -21,14 +21,14 @@ class phpbb_path_helper_test extends phpbb_test_case  	{  		parent::setUp(); -		$filesystem = new \phpbb\filesystem(); +		$filesystem = new \phpbb\filesystem\filesystem();  		$this->set_phpbb_root_path($filesystem);  		$this->path_helper = new \phpbb\path_helper(  			new \phpbb\symfony_request(  				new phpbb_mock_request()  			), -			new \phpbb\filesystem(), +			new \phpbb\filesystem\filesystem(),  			$this->getMock('\phpbb\request\request'),  			$this->phpbb_root_path,  			'php' @@ -56,7 +56,7 @@ class phpbb_path_helper_test extends phpbb_test_case  	public function basic_update_web_root_path_data()  	{ -		$filesystem = new \phpbb\filesystem(); +		$filesystem = new \phpbb\filesystem\filesystem();  		$this->set_phpbb_root_path($filesystem);  		return array( @@ -90,7 +90,7 @@ class phpbb_path_helper_test extends phpbb_test_case  	public function update_web_root_path_data()  	{ -		$this->set_phpbb_root_path(new \phpbb\filesystem()); +		$this->set_phpbb_root_path(new \phpbb\filesystem\filesystem());  		return array(  			array( @@ -158,7 +158,7 @@ class phpbb_path_helper_test extends phpbb_test_case  		$path_helper = new \phpbb\path_helper(  			$symfony_request, -			new \phpbb\filesystem(), +			new \phpbb\filesystem\filesystem(),  			$this->getMock('\phpbb\request\request'),  			$this->phpbb_root_path,  			'php' | 
