From 32aa6566d7b117f783ee70e01121942bac9cd0a3 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Sat, 27 Oct 2018 15:42:10 +0100 Subject: [PATCH] remove commented out tolerances --- tests/ImageSharp.Tests/Drawing/Text/DrawTextOnImageTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ImageSharp.Tests/Drawing/Text/DrawTextOnImageTests.cs b/tests/ImageSharp.Tests/Drawing/Text/DrawTextOnImageTests.cs index 6d7c86409c..a02b65ef08 100644 --- a/tests/ImageSharp.Tests/Drawing/Text/DrawTextOnImageTests.cs +++ b/tests/ImageSharp.Tests/Drawing/Text/DrawTextOnImageTests.cs @@ -22,8 +22,8 @@ namespace SixLabors.ImageSharp.Tests.Drawing.Text private const string TestText = "Sphinx of black quartz, judge my vow\n0123456789"; - public static ImageComparer TextDrawingComparer = ImageComparer.Exact;//.TolerantPercentage(0.01f); - public static ImageComparer OutlinedTextDrawingComparer = ImageComparer.Exact;// TolerantPercentage(0.5f, 3); + public static ImageComparer TextDrawingComparer = ImageComparer.Exact; + public static ImageComparer OutlinedTextDrawingComparer = ImageComparer.Exact; [Theory] [WithSolidFilledImages(200, 100, "White", PixelTypes.Rgba32, 50, 0, 0, "SixLaborsSampleAB.woff", AB)]