diff options
| author | Nils Adermann <naderman@naderman.de> | 2013-09-17 17:12:41 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2013-09-17 17:12:41 +0200 |
| commit | 9d8ac2b0ceb24dd14df61d083505941afb1b52c4 (patch) | |
| tree | c51c6f605bf1c610a232772f2d5ec9c12e0ff5aa /tests/template | |
| parent | f039a3308a3d57e7b9fab562bdd71cf1a9fb4dc9 (diff) | |
| download | forums-9d8ac2b0ceb24dd14df61d083505941afb1b52c4.tar forums-9d8ac2b0ceb24dd14df61d083505941afb1b52c4.tar.gz forums-9d8ac2b0ceb24dd14df61d083505941afb1b52c4.tar.bz2 forums-9d8ac2b0ceb24dd14df61d083505941afb1b52c4.tar.xz forums-9d8ac2b0ceb24dd14df61d083505941afb1b52c4.zip | |
[ticket/11700] Fix unit tests after develop merge
PHPBB3-11700
Diffstat (limited to 'tests/template')
| -rw-r--r-- | tests/template/template_events_test.php | 2 | ||||
| -rw-r--r-- | tests/template/template_test_case.php | 4 | ||||
| -rw-r--r-- | tests/template/template_test_case_with_tree.php | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/tests/template/template_events_test.php b/tests/template/template_events_test.php index 41ece4972b..4155d5fd83 100644 --- a/tests/template/template_events_test.php +++ b/tests/template/template_events_test.php @@ -117,7 +117,7 @@ Zeta test event in all', dirname(__FILE__) . "/datasets/$dataset/" ); $phpbb_filesystem = new \phpbb\filesystem( - new \phpbb\symfony\request( + new \phpbb\symfony_request( new phpbb_mock_request() ), $phpbb_root_path, diff --git a/tests/template/template_test_case.php b/tests/template/template_test_case.php index c9b38ee40d..e9cbdec1d9 100644 --- a/tests/template/template_test_case.php +++ b/tests/template/template_test_case.php @@ -63,8 +63,8 @@ class phpbb_template_template_test_case extends phpbb_test_case $config = new \phpbb\config\config(array_merge($defaults, $new_config)); $this->user = new \phpbb\user; - $phpbb_filesystem = new phpbb_filesystem( - new phpbb_symfony_request( + $phpbb_filesystem = new \phpbb\filesystem( + new \phpbb\symfony_request( new phpbb_mock_request() ), $phpbb_root_path, diff --git a/tests/template/template_test_case_with_tree.php b/tests/template/template_test_case_with_tree.php index 7f7cffdb82..232331d37c 100644 --- a/tests/template/template_test_case_with_tree.php +++ b/tests/template/template_test_case_with_tree.php @@ -18,8 +18,8 @@ class phpbb_template_template_test_case_with_tree extends phpbb_template_templat $defaults = $this->config_defaults(); $config = new \phpbb\config\config(array_merge($defaults, $new_config)); - $this->phpbb_filesystem = new phpbb_filesystem( - new phpbb_symfony_request( + $this->phpbb_filesystem = new \phpbb\filesystem( + new \phpbb\symfony_request( new phpbb_mock_request() ), $phpbb_root_path, |
