mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/13904] Fix tests after changes to factory
PHPBB3-13904
This commit is contained in:
@@ -185,7 +185,7 @@ class phpbb_fileupload_test extends phpbb_test_case
|
||||
->set_max_filesize(1000);
|
||||
|
||||
copy($this->path . 'jpg', $this->path . 'jpg.jpg');
|
||||
$file = $upload->handle_upload('local', $this->path . 'jpg.jpg');
|
||||
$file = $upload->handle_upload('files.types.local', $this->path . 'jpg.jpg');
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
$this->assertFalse($file->additional_checks());
|
||||
$this->assertTrue($file->move_file('../tests/upload/fixture/copies', true));
|
||||
@@ -199,7 +199,7 @@ class phpbb_fileupload_test extends phpbb_test_case
|
||||
->set_max_filesize(1000);
|
||||
|
||||
copy($this->path . 'jpg', $this->path . 'jpg.jpg');
|
||||
$file = $upload->handle_upload('local', $this->path . 'jpg.jpg');
|
||||
$file = $upload->handle_upload('files.types.local', $this->path . 'jpg.jpg');
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
$this->assertFalse($file->move_file('../tests/upload/fixture'));
|
||||
$this->assertFalse($file->file_moved);
|
||||
@@ -214,7 +214,7 @@ class phpbb_fileupload_test extends phpbb_test_case
|
||||
|
||||
copy($this->path . 'jpg', $this->path . 'jpg.jpg');
|
||||
copy($this->path . 'jpg', $this->path . 'copies/jpg.jpg');
|
||||
$file = $upload->handle_upload('local', $this->path . 'jpg.jpg');
|
||||
$file = $upload->handle_upload('files.types.local', $this->path . 'jpg.jpg');
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
$file->move_file('../tests/upload/fixture/copies', true);
|
||||
$this->assertEquals(0, sizeof($file->error));
|
||||
|
Reference in New Issue
Block a user