summaryrefslogtreecommitdiff
path: root/tests/Unit/Http/RequestTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Http/RequestTest.php')
-rw-r--r--tests/Unit/Http/RequestTest.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Unit/Http/RequestTest.php b/tests/Unit/Http/RequestTest.php
index 4d942311..3f52709d 100644
--- a/tests/Unit/Http/RequestTest.php
+++ b/tests/Unit/Http/RequestTest.php
@@ -286,7 +286,7 @@ class RequestTest extends TestCase
{
$filename = tempnam(sys_get_temp_dir(), 'test');
file_put_contents($filename, 'LoremIpsum!');
- $files = [new SymfonyFile($filename, 'foo.txt', 'text/plain', 11)];
+ $files = [new SymfonyFile($filename, 'foo.txt', 'text/plain', UPLOAD_ERR_PARTIAL)];
$request = new Request([], [], [], [], $files);
$uploadedFiles = $request->getUploadedFiles();
@@ -298,6 +298,7 @@ class RequestTest extends TestCase
$this->assertEquals('foo.txt', $file->getClientFilename());
$this->assertEquals('text/plain', $file->getClientMediaType());
$this->assertEquals(11, $file->getSize());
+ $this->assertEquals(UPLOAD_ERR_PARTIAL, $file->getError());
}
/**