File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
tests/ImageSharp.Drawing.Tests/Drawing Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 33
44using System . Numerics ;
55using SixLabors . ImageSharp . Drawing . Processing ;
6+ using SixLabors . ImageSharp . Drawing . Tests . TestUtilities . ImageComparison ;
67using SixLabors . ImageSharp . PixelFormats ;
78using SixLabors . ImageSharp . Processing ;
89using Xunit ;
@@ -63,6 +64,7 @@ public void FillPathSVGArcs<TPixel>(TestImageProvider<TPixel> provider)
6364 public void FillPathCanvasArcs < TPixel > ( TestImageProvider < TPixel > provider )
6465 where TPixel : unmanaged, IPixel < TPixel >
6566 => provider . VerifyOperation (
67+ ImageComparer . TolerantPercentage ( 5e-3f ) ,
6668 image =>
6769 {
6870 for ( int i = 0 ; i <= 3 ; i ++ )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public class DrawTextOnImageTests
2727
2828 private static readonly ImageComparer TextDrawingComparer = ImageComparer . TolerantPercentage ( 1e-2f ) ;
2929
30- private static readonly ImageComparer OutlinedTextDrawingComparer = ImageComparer . TolerantPercentage ( 6e-4f ) ;
30+ private static readonly ImageComparer OutlinedTextDrawingComparer = ImageComparer . TolerantPercentage ( 1e-3f ) ;
3131
3232 public DrawTextOnImageTests ( ITestOutputHelper output )
3333 => this . Output = output ;
You can’t perform that action at this time.
0 commit comments