diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-11-07 13:49:55 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-11-07 13:49:55 +0100 |
commit | 95348c8f6d64302d2d525f2ba1a9408f1510144b (patch) | |
tree | a5a982e26e58ec57c64f1dfb6b9d5ad587719e99 /tests/functions_install | |
parent | 0e33c8d3d2fe830490771f7d1a357612b297ef96 (diff) | |
download | forums-95348c8f6d64302d2d525f2ba1a9408f1510144b.tar forums-95348c8f6d64302d2d525f2ba1a9408f1510144b.tar.gz forums-95348c8f6d64302d2d525f2ba1a9408f1510144b.tar.bz2 forums-95348c8f6d64302d2d525f2ba1a9408f1510144b.tar.xz forums-95348c8f6d64302d2d525f2ba1a9408f1510144b.zip |
[ticket/11927] Prefix function with phpbb_
PHPBB3-11927
Diffstat (limited to 'tests/functions_install')
-rw-r--r-- | tests/functions_install/ignore_new_file_on_update_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functions_install/ignore_new_file_on_update_test.php b/tests/functions_install/ignore_new_file_on_update_test.php index 0c05cc6907..ae1dde96f7 100644 --- a/tests/functions_install/ignore_new_file_on_update_test.php +++ b/tests/functions_install/ignore_new_file_on_update_test.php @@ -34,6 +34,6 @@ class phpbb_functions_install_ignore_new_file_on_update_test extends phpbb_test_ public function test_ignore_new_file_on_update($file, $expected) { global $phpbb_root_path; - $this->assertEquals($expected, ignore_new_file_on_update($phpbb_root_path, $file)); + $this->assertEquals($expected, phpbb_ignore_new_file_on_update($phpbb_root_path, $file)); } } |