aboutsummaryrefslogtreecommitdiffstats
path: root/tests/upload
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-28 22:34:10 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-28 22:34:10 +0200
commitb75fb96bab92952011f796cf29611c6bff09dd37 (patch)
treebe076b8208c94317c59fbad1acc36aeccb2964fb /tests/upload
parent6a3b343dfce3b0c758f94b8768f5a767a95f69ef (diff)
downloadforums-b75fb96bab92952011f796cf29611c6bff09dd37.tar
forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar.gz
forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar.bz2
forums-b75fb96bab92952011f796cf29611c6bff09dd37.tar.xz
forums-b75fb96bab92952011f796cf29611c6bff09dd37.zip
[ticket/11226] Explicity set file_moved to false
PHPBB3-11226
Diffstat (limited to 'tests/upload')
-rw-r--r--tests/upload/fileupload_test.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/upload/fileupload_test.php b/tests/upload/fileupload_test.php
index b30bfe59b4..c362c3461e 100644
--- a/tests/upload/fileupload_test.php
+++ b/tests/upload/fileupload_test.php
@@ -110,7 +110,8 @@ class phpbb_fileupload_test extends phpbb_test_case
copy($this->path . 'jpg', $this->path . 'jpg.jpg');
$file = $upload->local_upload($this->path . 'jpg.jpg');
$this->assertEquals(0, sizeof($file->error));
- $file->move_file('../tests/upload/fixture');
+ $this->assertFalse($file->move_file('../tests/upload/fixture'));
+ $this->assertFalse($file->file_moved);
$this->assertEquals(1, sizeof($file->error));
}