diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-09-26 14:24:50 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-09-26 14:24:50 +0200 |
commit | 36bf4438e43d98f78e6a04f53d1d295c9767c14d (patch) | |
tree | 48101073eb0d4f4b01d14ea05344adb34b729a7c /tests/mock/request.php | |
parent | e8303bc3199081d1f9f0679d3b98298ccdc49deb (diff) | |
parent | ccf00c7265d310023bcdf3f5a96de7c651567cb1 (diff) | |
download | forums-36bf4438e43d98f78e6a04f53d1d295c9767c14d.tar forums-36bf4438e43d98f78e6a04f53d1d295c9767c14d.tar.gz forums-36bf4438e43d98f78e6a04f53d1d295c9767c14d.tar.bz2 forums-36bf4438e43d98f78e6a04f53d1d295c9767c14d.tar.xz forums-36bf4438e43d98f78e6a04f53d1d295c9767c14d.zip |
Merge remote-tracking branch 'cyberalien/ticket/11868' into develop
* cyberalien/ticket/11868:
[ticket/11868] Add @depends to test
[ticket/11868] Add functional test for registration
[ticket/11868] Replace phpbb_request_interface references
Diffstat (limited to 'tests/mock/request.php')
-rw-r--r-- | tests/mock/request.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mock/request.php b/tests/mock/request.php index ed0744c8cf..60ba725abd 100644 --- a/tests/mock/request.php +++ b/tests/mock/request.php @@ -74,7 +74,7 @@ class phpbb_mock_request implements \phpbb\request\request_interface return array_keys($this->data[$super_global]); } - public function get_super_global($super_global = phpbb_request_interface::REQUEST) + public function get_super_global($super_global = \phpbb\request\request_interface::REQUEST) { return $this->data[$super_global]; } |