diff options
author | Cesar G <prototech91@gmail.com> | 2014-04-22 16:03:13 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-04-22 16:03:13 -0700 |
commit | e9b00071dd1e7ae40a04e26d3f337d70bafbcf93 (patch) | |
tree | e788dad93d37e19115eb8d3621c3b075499e0e5a | |
parent | e104c364f494b44a05e1fae4e0caf1f67de7ea63 (diff) | |
download | forums-e9b00071dd1e7ae40a04e26d3f337d70bafbcf93.tar forums-e9b00071dd1e7ae40a04e26d3f337d70bafbcf93.tar.gz forums-e9b00071dd1e7ae40a04e26d3f337d70bafbcf93.tar.bz2 forums-e9b00071dd1e7ae40a04e26d3f337d70bafbcf93.tar.xz forums-e9b00071dd1e7ae40a04e26d3f337d70bafbcf93.zip |
[ticket/11508] Fix build_url test.
PHPBB3-11508
-rw-r--r-- | tests/functions/build_url_test.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functions/build_url_test.php b/tests/functions/build_url_test.php index 7e1c620664..795427ffe8 100644 --- a/tests/functions/build_url_test.php +++ b/tests/functions/build_url_test.php @@ -13,7 +13,7 @@ class phpbb_build_url_test extends phpbb_test_case { protected function setUp() { - global $user, $phpbb_dispatcher, $phpbb_container, $phpbb_root_path; + global $user, $phpbb_dispatcher, $phpbb_container, $phpbb_root_path, $phpbb_path_helper; parent::setUp(); @@ -21,7 +21,7 @@ class phpbb_build_url_test extends phpbb_test_case $user = new phpbb_mock_user(); $phpbb_dispatcher = new phpbb_mock_event_dispatcher(); - $path_helper = new \phpbb\path_helper( + $phpbb_path_helper = new \phpbb\path_helper( new \phpbb\symfony_request( new phpbb_mock_request() ), |