aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/renderer_eval_test.php
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-03-14 23:12:11 +0200
committerVjacheslav Trushkin <arty@phpbb.com>2012-03-14 23:12:11 +0200
commitb7d84a586c1e253ff7075e80ab721db5c1101c9f (patch)
tree16e0e179d9f5d0382236ac4865c56e4c7cff3cac /tests/template/renderer_eval_test.php
parent7d414d04ca80b3dc5efc7ece4c3c28123a4e7e89 (diff)
downloadforums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar.gz
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar.bz2
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar.xz
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.zip
[feature/merging-style-components] Renaming template classes
Changing template classes prefixes from phpbb_template to phpbb_style (for classes that will work with styles) or phpbb_style_template (for classes that are specific to templates) PHPBB3-10632
Diffstat (limited to 'tests/template/renderer_eval_test.php')
-rw-r--r--tests/template/renderer_eval_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/template/renderer_eval_test.php b/tests/template/renderer_eval_test.php
index 7ebb8b9bda..9b4f74c824 100644
--- a/tests/template/renderer_eval_test.php
+++ b/tests/template/renderer_eval_test.php
@@ -13,8 +13,8 @@ class phpbb_template_renderer_eval_test extends phpbb_test_case
{
$compiled_code = '<a href="<?php echo \'Test\'; ?>">';
$valid_code = '<a href="Test">';
- $context = new phpbb_template_context();
- $template = new phpbb_template_renderer_eval($compiled_code, NULL);
+ $context = new phpbb_style_template_context();
+ $template = new phpbb_style_template_renderer_eval($compiled_code, NULL);
ob_start();
try
{