1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

Tests/LibGfx: Fix a typo

This commit is contained in:
Lucas CHOLLET 2024-01-07 01:03:52 -05:00 committed by Andreas Kling
parent 52397d01bd
commit 75fc51bb67

View file

@ -521,7 +521,7 @@ TEST_CASE(test_tiff_lzw)
EXPECT_EQ(frame.image->get_pixel(60, 75), Gfx::Color::NamedColor::Red);
}
TEST_CASE(test_tiff_defalte)
TEST_CASE(test_tiff_deflate)
{
auto file = MUST(Core::MappedFile::map(TEST_INPUT("tiff/deflate.tiff"sv)));
EXPECT(Gfx::TIFFImageDecoderPlugin::sniff(file->bytes()));