aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2012-10-17 15:13:35 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2012-10-17 15:13:35 -0400
commitbb09cd9c8e76ac3af848d09db8ea1928dab66158 (patch)
tree8b8bc514928cab347f5965ce1c81b8c367d0a6e0 /tests
parentc630480ca1a426cb0897be35626baac2694fccf5 (diff)
downloadforums-bb09cd9c8e76ac3af848d09db8ea1928dab66158.tar
forums-bb09cd9c8e76ac3af848d09db8ea1928dab66158.tar.gz
forums-bb09cd9c8e76ac3af848d09db8ea1928dab66158.tar.bz2
forums-bb09cd9c8e76ac3af848d09db8ea1928dab66158.tar.xz
forums-bb09cd9c8e76ac3af848d09db8ea1928dab66158.zip
[ticket/10848] Add phpbb_ prefix.
PHPBB3-10848
Diffstat (limited to 'tests')
-rw-r--r--tests/functions/clean_path_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functions/clean_path_test.php b/tests/functions/clean_path_test.php
index 4c8fe54909..bcbe9838d9 100644
--- a/tests/functions/clean_path_test.php
+++ b/tests/functions/clean_path_test.php
@@ -37,7 +37,7 @@ class phpbb_clean_path_test extends phpbb_test_case
*/
public function test_clean_path($input, $expected)
{
- $output = clean_path($input);
+ $output = phpbb_clean_path($input);
$this->assertEquals($expected, $output);
}