diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2012-04-29 00:30:08 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2012-04-29 00:30:08 +0300 |
commit | 51347ebc09d18a55fa93fe86ef50a215148c935f (patch) | |
tree | ec28c472f113d50a521fb1faa4613cb6b6d76ba4 /tests/template/template_locate_test.php | |
parent | 2a92fee06d22eb54ee9373adca1c3b50b1d3e3d7 (diff) | |
download | forums-51347ebc09d18a55fa93fe86ef50a215148c935f.tar forums-51347ebc09d18a55fa93fe86ef50a215148c935f.tar.gz forums-51347ebc09d18a55fa93fe86ef50a215148c935f.tar.bz2 forums-51347ebc09d18a55fa93fe86ef50a215148c935f.tar.xz forums-51347ebc09d18a55fa93fe86ef50a215148c935f.zip |
[ticket/10800] Changing template paths in tests
Changing template paths in tests from absolute to relative
PHPBB3-10800
Diffstat (limited to 'tests/template/template_locate_test.php')
-rw-r--r-- | tests/template/template_locate_test.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/template/template_locate_test.php b/tests/template/template_locate_test.php index d6e2e82a47..be9ae06809 100644 --- a/tests/template/template_locate_test.php +++ b/tests/template/template_locate_test.php @@ -17,21 +17,21 @@ class phpbb_template_template_locate_test extends phpbb_template_template_test_c // First element of the array is test name - keep them distinct array( 'simple inheritance - only parent template exists', - dirname(__FILE__) . '/parent_templates/parent_only.html', + $this->test_path . '/parent_templates/parent_only.html', 'parent_only.html', false, true, ), array( 'simple inheritance - only child template exists', - dirname(__FILE__) . '/templates/child_only.html', + $this->test_path . '/templates/child_only.html', 'child_only.html', false, true, ), array( 'simple inheritance - both parent and child templates exist', - dirname(__FILE__) . '/templates/parent_and_child.html', + $this->test_path . '/templates/parent_and_child.html', 'parent_and_child.html', false, true, |