1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-29 08:40:33 +02:00

Add non-standard media type "image/x-bmp3"

This commit is contained in:
Oliver Vogel
2025-01-31 17:19:11 +01:00
parent 513b8c8e6d
commit 629142e2de
4 changed files with 8 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ final class FormatTest extends BaseTestCase
$format = Format::BMP;
$mediaTypes = $format->mediaTypes();
$this->assertIsArray($mediaTypes);
$this->assertCount(8, $mediaTypes);
$this->assertCount(9, $mediaTypes);
$this->assertEquals(MediaType::IMAGE_BMP, $format->mediaType());
}