From ce7ef111b8a0ea75c8db2aba4600ae1b5c2162bb Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Wed, 7 Dec 2022 02:26:27 +0100 Subject: [PATCH] cancellation tests: larger images, don't go above 0.7 --- .../Image/ImageTests.Decode_Cancellation.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs b/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs index 054a52177..39320b87b 100644 --- a/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs +++ b/tests/ImageSharp.Tests/Image/ImageTests.Decode_Cancellation.cs @@ -20,17 +20,17 @@ public partial class ImageTests { string[] testFileForEachCodec = new[] { - TestImages.Png.BikeSmall, - TestImages.Jpeg.Baseline.Jpeg420Small, + TestImages.Png.Bike, + TestImages.Jpeg.Baseline.Snake, TestImages.Bmp.Car, TestImages.Tiff.RgbUncompressed, TestImages.Gif.Kumin, - TestImages.Tga.Bit32PalRleBottomLeft, - TestImages.Webp.TestPatternOpaqueSmall, + TestImages.Tga.Bit32BottomRight, + TestImages.Webp.Lossless.WithExif, TestImages.Pbm.GrayscaleBinaryWide }; - double[] percentages = new[] { 0, 0.5, 0.9 }; + double[] percentages = new[] { 0, 0.3, 0.7 }; TheoryData data = new();