aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functions
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-05-15 13:52:02 +0200
committerAndreas Fischer <bantu@phpbb.com>2013-05-15 13:52:02 +0200
commitfd3b257468042fe546916370c4610dc8238c2483 (patch)
tree2573e6565dc3cf168fab6a6e7b749f691f9c7ad2 /tests/functions
parentf7fa95f6fa7593e1076e1b27bb4429da0300aa89 (diff)
downloadforums-fd3b257468042fe546916370c4610dc8238c2483.tar
forums-fd3b257468042fe546916370c4610dc8238c2483.tar.gz
forums-fd3b257468042fe546916370c4610dc8238c2483.tar.bz2
forums-fd3b257468042fe546916370c4610dc8238c2483.tar.xz
forums-fd3b257468042fe546916370c4610dc8238c2483.zip
[ticket/11540] Add phpbb_ prefix in is_absolute_test from olympus.
PHPBB3-11540
Diffstat (limited to 'tests/functions')
-rw-r--r--tests/functions/is_absolute_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functions/is_absolute_test.php b/tests/functions/is_absolute_test.php
index 26425d2a36..64a7a81b4a 100644
--- a/tests/functions/is_absolute_test.php
+++ b/tests/functions/is_absolute_test.php
@@ -29,6 +29,6 @@ class phpbb_functions_is_absolute_test extends phpbb_test_case
*/
public function test_is_absolute($path, $expected)
{
- $this->assertEquals($expected, is_absolute($path));
+ $this->assertEquals($expected, phpbb_is_absolute($path));
}
}