From 41508d5da0fdb88f91f327e85fff2335ed193c32 Mon Sep 17 00:00:00 2001 From: Brian Popow Date: Tue, 7 Apr 2020 20:29:54 +0200 Subject: [PATCH] Fix broken test image --- tests/ImageSharp.Tests/TestImages.cs | 6 +++--- .../{iccp_lossless.webp => lossless_with_iccp.webp} | Bin .../WebP/{iccp_lossy.webp => lossy_with_iccp.webp} | Bin 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/Images/Input/WebP/{iccp_lossless.webp => lossless_with_iccp.webp} (100%) rename tests/Images/Input/WebP/{iccp_lossy.webp => lossy_with_iccp.webp} (100%) diff --git a/tests/ImageSharp.Tests/TestImages.cs b/tests/ImageSharp.Tests/TestImages.cs index 55a9e5e94..650fc7546 100644 --- a/tests/ImageSharp.Tests/TestImages.cs +++ b/tests/ImageSharp.Tests/TestImages.cs @@ -406,7 +406,7 @@ namespace SixLabors.ImageSharp.Tests { public const string Earth = "WebP/earth_lossless.webp"; public const string WithExif = "WebP/exif_lossless.webp"; - public const string WithIccp = "WebP/iccp_lossless.webp"; + public const string WithIccp = "WebP/lossless_with_iccp.webp"; public const string NoTransform1 = "WebP/lossless_vec_1_0.webp"; public const string NoTransform2 = "WebP/lossless_vec_2_0.webp"; public const string GreenTransform1 = "WebP/lossless1.webp"; @@ -457,7 +457,7 @@ namespace SixLabors.ImageSharp.Tests { public const string Earth = "WebP/earth_lossy.webp"; public const string WithExif = "WebP/exif_lossy.webp"; - public const string WithIccp = "WebP/iccp_lossy.webp"; + public const string WithIccp = "WebP/lossy_with_iccp.webp"; // Lossy images without macroblock filtering. public const string Bike = "WebP/bike_lossy.webp"; @@ -476,7 +476,7 @@ namespace SixLabors.ImageSharp.Tests public const string SimpleFilter05 = "WebP/test-nostrong.webp"; // Lossy images with a complex filter. - public const string IccpComplexFilter = "WebP/iccp_lossy.webp"; + public const string IccpComplexFilter = WithIccp; public const string VeryShort = "WebP/very_short.webp"; public const string BikeComplexFilter = "WebP/bike_lossy_complex_filter.webp"; public const string ComplexFilter01 = "WebP/vp80-02-inter-1418.webp"; diff --git a/tests/Images/Input/WebP/iccp_lossless.webp b/tests/Images/Input/WebP/lossless_with_iccp.webp similarity index 100% rename from tests/Images/Input/WebP/iccp_lossless.webp rename to tests/Images/Input/WebP/lossless_with_iccp.webp diff --git a/tests/Images/Input/WebP/iccp_lossy.webp b/tests/Images/Input/WebP/lossy_with_iccp.webp similarity index 100% rename from tests/Images/Input/WebP/iccp_lossy.webp rename to tests/Images/Input/WebP/lossy_with_iccp.webp