aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRubén Calvo <rubencm@gmail.com>2017-06-27 10:27:32 +0200
committerRubén Calvo <rubencm@gmail.com>2017-07-20 19:55:52 +0200
commit603a8c51da9ef19d2cab9c8299f3e48392f81c6f (patch)
tree801ce67cbe1d463ba0be707e00806ac0131a5b31 /tests/path_helper
parent[ticket/15253] Add experimental annotation (diff)
downloadphpbb-603a8c51da9ef19d2cab9c8299f3e48392f81c6f.tar.gz
phpbb-603a8c51da9ef19d2cab9c8299f3e48392f81c6f.tar.bz2
phpbb-603a8c51da9ef19d2cab9c8299f3e48392f81c6f.zip
[ticket/15253] Move storage helper to filesystem
PHPBB3-15253
Diffstat (limited to 'tests/path_helper')
-rw-r--r--tests/path_helper/path_helper_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/path_helper/path_helper_test.php b/tests/path_helper/path_helper_test.php
index 29dee8cced..96b8460f04 100644
--- a/tests/path_helper/path_helper_test.php
+++ b/tests/path_helper/path_helper_test.php
@@ -43,7 +43,7 @@ class phpbb_path_helper_test extends phpbb_test_case
*/
public function set_phpbb_root_path()
{
- $this->phpbb_root_path = \phpbb\storage\helper::clean_path(dirname(__FILE__) . '/../../phpBB/');
+ $this->phpbb_root_path = \phpbb\filesystem\helper::clean_path(dirname(__FILE__) . '/../../phpBB/');
}
public function test_get_web_root_path()
@@ -72,7 +72,7 @@ class phpbb_path_helper_test extends phpbb_test_case
),
array(
$this->phpbb_root_path . $this->phpbb_root_path . 'test.php',
- \phpbb\storage\helper::clean_path($this->phpbb_root_path . $this->phpbb_root_path . 'test.php'),
+ \phpbb\filesystem\helper::clean_path($this->phpbb_root_path . $this->phpbb_root_path . 'test.php'),
),
);
}