diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-01 03:11:13 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-05-01 03:11:13 -0400 |
commit | b884573c1d322b207f9dcbcbc02806eed408fbab (patch) | |
tree | 03761d1e875331d0998f87db3849ed73fdce40d3 | |
parent | c844a277b2a6e4ad6232925fa78868cd945fc8a1 (diff) | |
download | forums-b884573c1d322b207f9dcbcbc02806eed408fbab.tar forums-b884573c1d322b207f9dcbcbc02806eed408fbab.tar.gz forums-b884573c1d322b207f9dcbcbc02806eed408fbab.tar.bz2 forums-b884573c1d322b207f9dcbcbc02806eed408fbab.tar.xz forums-b884573c1d322b207f9dcbcbc02806eed408fbab.zip |
[feature/template-engine] Relax missing file exception check.
As long as the exception message has the correct description and
file name we should not care which function raised the exception.
PHPBB3-9726
-rw-r--r-- | tests/template/template_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/template/template_test.php b/tests/template/template_test.php index 0a46ff4d23..cb9563150a 100644 --- a/tests/template/template_test.php +++ b/tests/template/template_test.php @@ -331,7 +331,7 @@ class phpbb_template_template_test extends phpbb_test_case public function test_invalid_handle() { - $expecting = 'template->_tpl_load(): No file specified for handle test'; + $expecting = 'No file specified for handle test'; $this->setExpectedTriggerError(E_USER_ERROR, $expecting); $this->display('test'); |