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 7db7dcc commit bfcf65fCopy full SHA for bfcf65f
src/Symfony/Component/HttpFoundation/Tests/File/UploadedFileTest.php
@@ -82,12 +82,12 @@ public function testGuessClientExtensionWithIncorrectMimeType()
82
$file = new UploadedFile(
83
__DIR__.'/Fixtures/test.gif',
84
'original.gif',
85
- 'image/jpeg',
+ 'image/png',
86
filesize(__DIR__.'/Fixtures/test.gif'),
87
null
88
);
89
90
- $this->assertEquals('jpeg', $file->guessClientExtension());
+ $this->assertEquals('png', $file->guessClientExtension());
91
}
92
93
public function testCaseSensitiveMimeType()
0 commit comments