From ed8d82f3deee1354017bcda5658c9097d867e71e Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sun, 29 Oct 2023 16:59:48 -0400 Subject: [PATCH] Tests/LibGfx: Move the tiff image to its own folder --- Tests/LibGfx/TestImageDecoder.cpp | 2 +- .../LibGfx/test-inputs/{ => tiff}/uncompressed.tiff | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename Tests/LibGfx/test-inputs/{ => tiff}/uncompressed.tiff (100%) diff --git a/Tests/LibGfx/TestImageDecoder.cpp b/Tests/LibGfx/TestImageDecoder.cpp index a2b4275bd9..7df82a5b50 100644 --- a/Tests/LibGfx/TestImageDecoder.cpp +++ b/Tests/LibGfx/TestImageDecoder.cpp @@ -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())); diff --git a/Tests/LibGfx/test-inputs/uncompressed.tiff b/Tests/LibGfx/test-inputs/tiff/uncompressed.tiff similarity index 100% rename from Tests/LibGfx/test-inputs/uncompressed.tiff rename to Tests/LibGfx/test-inputs/tiff/uncompressed.tiff