aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/types_form_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/files/types_form_test.php')
-rw-r--r--tests/files/types_form_test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/files/types_form_test.php b/tests/files/types_form_test.php
index 925babb47f..ffebcf603f 100644
--- a/tests/files/types_form_test.php
+++ b/tests/files/types_form_test.php
@@ -38,11 +38,11 @@ class phpbb_files_types_form_test extends phpbb_test_case
/** @var string phpBB root path */
protected $phpbb_root_path;
- protected function setUp()
+ protected function setUp(): void
{
global $phpbb_root_path, $phpEx;
- $this->request = $this->getMock('\phpbb\request\request');
+ $this->request = $this->createMock('\phpbb\request\request');
$this->request->expects($this->any())
->method('file')
->willReturn(array());
@@ -137,7 +137,7 @@ class phpbb_files_types_form_test extends phpbb_test_case
*/
public function test_upload_form($upload, $expected, $plupload = array())
{
- $this->request = $this->getMock('\phpbb\request\request');
+ $this->request = $this->createMock('\phpbb\request\request');
$this->request->expects($this->any())
->method('file')
->willReturn($upload);