From b02a47dbe5bca85d4a4dd426ec69175dc41694cf Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Tue, 23 Jan 2018 16:41:47 +1100 Subject: [PATCH] Re-enable the reference output for Detect Edges --- .../Processing/Processors/Convolution/DetectEdgesTest.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/ImageSharp.Tests/Processing/Processors/Convolution/DetectEdgesTest.cs b/tests/ImageSharp.Tests/Processing/Processors/Convolution/DetectEdgesTest.cs index 1b678f20b..323842556 100644 --- a/tests/ImageSharp.Tests/Processing/Processors/Convolution/DetectEdgesTest.cs +++ b/tests/ImageSharp.Tests/Processing/Processors/Convolution/DetectEdgesTest.cs @@ -3,7 +3,6 @@ using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.Processing; -using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison; using SixLabors.Primitives; using Xunit; @@ -39,9 +38,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution { image.Mutate(x => x.DetectEdges(detector)); image.DebugSave(provider, detector.ToString()); - - // TODO: Enable once we have updated the images - // image.CompareToReferenceOutput(provider, detector.ToString()); + image.CompareToReferenceOutput(provider, detector.ToString()); } } @@ -81,8 +78,6 @@ namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution image.Mutate(x => x.DetectEdges(bounds)); image.DebugSave(provider); - - // TODO: Enable once we have updated the images image.CompareToReferenceOutput(provider); } }