diff options
Diffstat (limited to 'tests/plupload/plupload_test.php')
| -rw-r--r-- | tests/plupload/plupload_test.php | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/plupload/plupload_test.php b/tests/plupload/plupload_test.php index 2f47bf2b39..3312f4d0a0 100644 --- a/tests/plupload/plupload_test.php +++ b/tests/plupload/plupload_test.php @@ -34,6 +34,10 @@ class phpbb_plupload_test extends phpbb_test_case  	*/  	public function test_generate_resize_string($config_width, $config_height, $expected)  	{ +		global $phpbb_root_path, $phpEx; + +		$lang = new \phpbb\language\language(new \phpbb\language\language_file_loader($phpbb_root_path, $phpEx)); +  		$config = new \phpbb\config\config(array(  			'img_max_width'		=> $config_width,  			'img_max_height'	=> $config_height, @@ -43,8 +47,8 @@ class phpbb_plupload_test extends phpbb_test_case  			'',  			$config,  			new phpbb_mock_request, -			new \phpbb\user('\phpbb\datetime'), -			new \phpbb\php\ini, +			new \phpbb\user($lang, '\phpbb\datetime'), +			new \bantu\IniGetWrapper\IniGetWrapper,  			new \phpbb\mimetype\guesser(array(new \phpbb\mimetype\extension_guesser))  		);  | 
