diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-09-13 09:30:56 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-09-13 09:30:56 +0200 |
commit | 759dc9bb84d712c11148a9689d294c09aa0f81d4 (patch) | |
tree | b97bc4c650007b8fb6b6b7aa80d3f1747e22bd73 /tests/upload/fileupload_test.php | |
parent | 40e614f56436447dffd272351e23b79c2da9fa3f (diff) | |
download | forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar.gz forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar.bz2 forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.tar.xz forums-759dc9bb84d712c11148a9689d294c09aa0f81d4.zip |
[ticket/13904] Set properties to protected where possible in filespec
PHPBB3-13904
Diffstat (limited to 'tests/upload/fileupload_test.php')
-rw-r--r-- | tests/upload/fileupload_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/upload/fileupload_test.php b/tests/upload/fileupload_test.php index 211e72a6e9..05cb8dcf93 100644 --- a/tests/upload/fileupload_test.php +++ b/tests/upload/fileupload_test.php @@ -202,7 +202,7 @@ class phpbb_fileupload_test extends phpbb_test_case $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); + $this->assertFalse($file->get('file_moved')); $this->assertEquals(1, sizeof($file->error)); } |