Tests/LibGfx: Move the tiff image to its own folder

This commit is contained in:
Lucas CHOLLET 2023-10-29 16:59:48 -04:00 committed by Andreas Kling
parent 472a886dfc
commit ed8d82f3de
2 changed files with 1 additions and 1 deletions

View file

@ -372,7 +372,7 @@ TEST_CASE(test_targa_top_left_compressed)
TEST_CASE(test_tiff_uncompressed)
{
auto file = MUST(Core::MappedFile::map(TEST_INPUT("uncompressed.tiff"sv)));
auto file = MUST(Core::MappedFile::map(TEST_INPUT("tiff/uncompressed.tiff"sv)));
EXPECT(Gfx::TIFFImageDecoderPlugin::sniff(file->bytes()));
auto plugin_decoder = MUST(Gfx::TIFFImageDecoderPlugin::create(file->bytes()));