8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c82e2df commit e00e22dCopy full SHA for e00e22d
src/Symfony/Component/Form/Tests/Extension/Core/Type/FileTypeTest.php
@@ -296,7 +296,7 @@ public function uploadFileErrorCodes()
296
{
297
return [
298
'no error' => [UPLOAD_ERR_OK, null],
299
- '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.'],
300
'MAX_FILE_SIZE from form' => [UPLOAD_ERR_FORM_SIZE, 'The file is too large.'],
301
'partially uploaded' => [UPLOAD_ERR_PARTIAL, 'The file could not be uploaded.'],
302
'no file upload' => [UPLOAD_ERR_NO_FILE, 'The file could not be uploaded.'],
0 commit comments