aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-05-01 04:03:06 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-05-04 00:08:20 -0400
commit87832d06cca520e27c5dbed1c36ab9c12240ae3d (patch)
treee2311f99e5f02fd78a5e19e4b020f4973b039ab0 /tests
parent48691b53a6b3397ede4f009e8a108b14b7f7f305 (diff)
downloadforums-87832d06cca520e27c5dbed1c36ab9c12240ae3d.tar
forums-87832d06cca520e27c5dbed1c36ab9c12240ae3d.tar.gz
forums-87832d06cca520e27c5dbed1c36ab9c12240ae3d.tar.bz2
forums-87832d06cca520e27c5dbed1c36ab9c12240ae3d.tar.xz
forums-87832d06cca520e27c5dbed1c36ab9c12240ae3d.zip
[feature/template-engine] Delete template class, use phpbb_template instead.
PHPBB3-9726
Diffstat (limited to 'tests')
-rw-r--r--tests/template/template_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/template/template_test.php b/tests/template/template_test.php
index e530b0f4e6..5692fcf06f 100644
--- a/tests/template/template_test.php
+++ b/tests/template/template_test.php
@@ -33,7 +33,7 @@ class phpbb_template_template_test extends phpbb_test_case
private function setup_engine()
{
$this->template_path = dirname(__FILE__) . '/templates';
- $this->template = new template();
+ $this->template = new phpbb_template();
$this->template->set_custom_template($this->template_path, 'tests');
}