We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09ea9fe commit f3ba373Copy full SHA for f3ba373
tests/ImageSharp.Tests/Formats/Tiff/TiffDecoderTests.cs
@@ -376,7 +376,9 @@ public void TiffDecoder_CanDecode_YccK_ICC<TPixel>(TestImageProvider<TPixel> pro
376
377
using Image<TPixel> image = provider.GetImage(TiffDecoder.Instance, options);
378
image.DebugSave(provider);
379
- image.CompareToReferenceOutput(ImageComparer.Exact, provider);
+
380
+ // Linux reports a 0.0000% difference, so we use a tolerant comparer here.
381
+ image.CompareToReferenceOutput(ImageComparer.TolerantPercentage(0.0001F), provider);
382
}
383
384
[Theory]
0 commit comments