diff options
author | hanakin <midaym@gmail.com> | 2017-01-23 23:08:52 -0500 |
---|---|---|
committer | hanakin <midaym@gmail.com> | 2017-01-23 23:08:52 -0500 |
commit | 8b6d043ca6b415be94e9e1517676e2e507e954c5 (patch) | |
tree | 9866ed566e4b54e3b1cabfe7ea64126e1253a618 | |
parent | 6f7b92ae1023f958e4b9894950a412fadc52b802 (diff) | |
download | forums-8b6d043ca6b415be94e9e1517676e2e507e954c5.tar forums-8b6d043ca6b415be94e9e1517676e2e507e954c5.tar.gz forums-8b6d043ca6b415be94e9e1517676e2e507e954c5.tar.bz2 forums-8b6d043ca6b415be94e9e1517676e2e507e954c5.tar.xz forums-8b6d043ca6b415be94e9e1517676e2e507e954c5.zip |
[ticket/15037] try larger size limit
PHPBB3-15037
-rw-r--r-- | tests/functional/fileupload_remote_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fileupload_remote_test.php b/tests/functional/fileupload_remote_test.php index 09c123fa7b..88f8999005 100644 --- a/tests/functional/fileupload_remote_test.php +++ b/tests/functional/fileupload_remote_test.php @@ -100,7 +100,7 @@ class phpbb_functional_fileupload_remote_test extends phpbb_functional_test_case $upload = new \phpbb\files\upload($this->filesystem, $this->factory, $this->language, $this->php_ini, $this->request, $this->phpbb_root_path); $upload->set_error_prefix('') ->set_allowed_extensions(array('gif')) - ->set_max_filesize(1100); + ->set_max_filesize(2000); $file = $upload->handle_upload('files.types.remote', self::$root_url . 'develop/test.gif'); $this->assertEquals(0, sizeof($file->error)); $this->assertTrue(file_exists($file->get('filename'))); |