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.
2 parents 619509e + bfcf65f commit 20969e6Copy full SHA for 20969e6
src/Symfony/Component/HttpFoundation/Tests/File/UploadedFileTest.php
@@ -87,11 +87,11 @@ public function testGuessClientExtensionWithIncorrectMimeType()
87
$file = new UploadedFile(
88
__DIR__.'/Fixtures/test.gif',
89
'original.gif',
90
- 'image/jpeg',
+ 'image/png',
91
null
92
);
93
94
- $this->assertEquals('jpeg', $file->guessClientExtension());
+ $this->assertEquals('png', $file->guessClientExtension());
95
}
96
97
public function testCaseSensitiveMimeType()
0 commit comments