Browse Source

Remove warnings

pull/1299/head
James Jackson-South 6 years ago
parent
commit
4e1fe80b5e
  1. 2
      tests/ImageSharp.Tests/Processing/Processors/Convolution/DetectEdgesTest.cs

2
tests/ImageSharp.Tests/Processing/Processors/Convolution/DetectEdgesTest.cs

@ -1,6 +1,7 @@
// Copyright (c) Six Labors. // Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0. // Licensed under the Apache License, Version 2.0.
using System.Diagnostics.CodeAnalysis;
using SixLabors.ImageSharp.PixelFormats; using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing; using SixLabors.ImageSharp.Processing;
using SixLabors.ImageSharp.Processing.Processors.Convolution; using SixLabors.ImageSharp.Processing.Processors.Convolution;
@ -11,6 +12,7 @@ using Xunit;
namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution namespace SixLabors.ImageSharp.Tests.Processing.Processors.Convolution
{ {
[GroupOutput("Convolution")] [GroupOutput("Convolution")]
[SuppressMessage("StyleCop.CSharp.NamingRules", "SA1313:Parameter names should begin with lower-case letter", Justification = "OK. Used for TheoryData compatibility.")]
public class DetectEdgesTest public class DetectEdgesTest
{ {
private static readonly ImageComparer OpaqueComparer = ImageComparer.TolerantPercentage(0.01F); private static readonly ImageComparer OpaqueComparer = ImageComparer.TolerantPercentage(0.01F);

Loading…
Cancel
Save