Skip to content

Commit

Permalink
[Form] Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Chalas committed Apr 7, 2019
1 parent c82e2df commit e00e22d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -296,7 +296,7 @@ public function uploadFileErrorCodes()
{
return [
'no error' => [UPLOAD_ERR_OK, null],
'upload_max_filesize ini directive' => [UPLOAD_ERR_INI_SIZE, 'The file is too large. Allowed maximum size is {{ limit }} {{ suffix }}.'],
'upload_max_filesize ini directive' => [UPLOAD_ERR_INI_SIZE, 'The file is too large. Allowed maximum size is 2 MiB.'],
'MAX_FILE_SIZE from form' => [UPLOAD_ERR_FORM_SIZE, 'The file is too large.'],
'partially uploaded' => [UPLOAD_ERR_PARTIAL, 'The file could not be uploaded.'],
'no file upload' => [UPLOAD_ERR_NO_FILE, 'The file could not be uploaded.'],
Expand Down

0 comments on commit e00e22d

Please sign in to comment.