Skip to content

Commit df19dd0

Browse files
committed
increase tolerance for Transform_WithTaperMatrix
1 parent 4f9edfa commit df19dd0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/ImageSharp.Tests/Processing/Transforms/ProjectiveTransformTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using SixLabors.ImageSharp.Processing.Transforms.Resamplers;
1111
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
1212
using Xunit;
13+
// ReSharper disable InconsistentNaming
1314

1415
namespace SixLabors.ImageSharp.Tests.Processing.Transforms
1516
{
@@ -18,7 +19,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Transforms
1819
public class ProjectiveTransformTests
1920
{
2021
private static readonly ImageComparer ValidatorComparer = ImageComparer.TolerantPercentage(0.03f, 3);
21-
private static readonly ImageComparer TolerantComparer = ImageComparer.TolerantPercentage(0.05f, 3);
22+
private static readonly ImageComparer TolerantComparer = ImageComparer.TolerantPercentage(0.1f, 3);
2223

2324
private ITestOutputHelper Output { get; }
2425

0 commit comments

Comments
 (0)