diff options
| author | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-03-23 21:59:40 +0100 |
|---|---|---|
| committer | Tristan Darricau <tristan.darricau@sensiolabs.com> | 2016-04-03 16:23:16 +0200 |
| commit | 663e3bc64238668ec139b53ccfb2f82a1d306601 (patch) | |
| tree | d8d921e7a60b75c75d88884cd759198aebb09d7e /tests/template/template_test_case_with_tree.php | |
| parent | 4070d1e06f677ea43b55c04e67b031a96dd22434 (diff) | |
| download | forums-663e3bc64238668ec139b53ccfb2f82a1d306601.tar forums-663e3bc64238668ec139b53ccfb2f82a1d306601.tar.gz forums-663e3bc64238668ec139b53ccfb2f82a1d306601.tar.bz2 forums-663e3bc64238668ec139b53ccfb2f82a1d306601.tar.xz forums-663e3bc64238668ec139b53ccfb2f82a1d306601.zip | |
[ticket/13616] Updates direct call to twig environment constructor
PHPBB3-13616
Diffstat (limited to 'tests/template/template_test_case_with_tree.php')
| -rw-r--r-- | tests/template/template_test_case_with_tree.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/template/template_test_case_with_tree.php b/tests/template/template_test_case_with_tree.php index bf5de6b85e..ff35d16120 100644 --- a/tests/template/template_test_case_with_tree.php +++ b/tests/template/template_test_case_with_tree.php @@ -45,7 +45,6 @@ class phpbb_template_template_test_case_with_tree extends phpbb_template_templat $config, $filesystem, $this->phpbb_path_helper, - $container, $cache_path, null, $loader, @@ -57,7 +56,7 @@ class phpbb_template_template_test_case_with_tree extends phpbb_template_templat ) ); $this->template = new phpbb\template\twig\twig($this->phpbb_path_helper, $config, $context, $twig, $cache_path, $this->user, array(new \phpbb\template\twig\extension($context, $this->user))); - $container->set('template.twig.lexer', new \phpbb\template\twig\lexer($twig)); + $twig->setLexer(new \phpbb\template\twig\lexer($twig)); $this->template->set_custom_style('tests', array($this->template_path, $this->parent_template_path)); } } |
