Browse Source

build fix

af/merge-core
Anton Firszov 9 years ago
parent
commit
0c13e28ada
  1. 2
      tests/ImageSharp.Tests/Formats/Jpg/JpegDecoderTests.cs
  2. 1
      tests/ImageSharp.Tests/Formats/Jpg/SpectralJpegTests.cs
  3. 1
      tests/ImageSharp.Tests/TestUtilities/Tests/ReferenceCodecTests.cs

2
tests/ImageSharp.Tests/Formats/Jpg/JpegDecoderTests.cs

@ -49,7 +49,7 @@ namespace SixLabors.ImageSharp.Tests
// BUG: PDF.js output is wrong on spectral level!
private static readonly ImageComparer PdfJsProgressiveComparer =
ImageComparer.Tolerant(0.015f, pixelThresholdHammingDistance: 4);
ImageComparer.Tolerant(0.015f, perPixelManhattanThreshold: 4);
public JpegDecoderTests(ITestOutputHelper output)

1
tests/ImageSharp.Tests/Formats/Jpg/SpectralJpegTests.cs

@ -6,6 +6,7 @@ namespace SixLabors.ImageSharp.Tests
using System.Linq;
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Jpeg;
using SixLabors.ImageSharp.Formats.Jpeg.PdfJsPort;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;

1
tests/ImageSharp.Tests/TestUtilities/Tests/ReferenceCodecTests.cs

@ -1,6 +1,7 @@
namespace SixLabors.ImageSharp.Tests
{
using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.Formats.Png;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Tests.TestUtilities.ImageComparison;
using SixLabors.ImageSharp.Tests.TestUtilities.ReferenceCodecs;

Loading…
Cancel
Save