Browse Source

Add missing test for #359

af/merge-core
JimBobSquarePants 8 years ago
parent
commit
a55cac8a99
  1. 1
      tests/ImageSharp.Tests/Formats/Png/PngDecoderTests.cs
  2. 2
      tests/ImageSharp.Tests/TestImages.cs

1
tests/ImageSharp.Tests/Formats/Png/PngDecoderTests.cs

@ -24,6 +24,7 @@ namespace SixLabors.ImageSharp.Tests
TestImages.Png.Splash, TestImages.Png.Indexed,
TestImages.Png.FilterVar,
TestImages.Png.Bad.ChunkLength1,
TestImages.Png.Bad.CorruptedChunk,
TestImages.Png.VimImage1,
TestImages.Png.VersioningImage1,

2
tests/ImageSharp.Tests/TestImages.cs

@ -20,7 +20,6 @@ namespace SixLabors.ImageSharp.Tests
public const string Blur = "Png/blur.png";
public const string Indexed = "Png/indexed.png";
public const string Splash = "Png/splash.png";
public const string CorruptedChunk = "Png/big-corrupted-chunk.png";
public const string Cross = "Png/cross.png";
public const string Powerpoint = "Png/pp.png";
public const string SplashInterlaced = "Png/splash-interlaced.png";
@ -57,6 +56,7 @@ namespace SixLabors.ImageSharp.Tests
// Odd chunk lengths
public const string ChunkLength1 = "Png/chunklength1.png";
public const string ChunkLength2 = "Png/chunklength2.png";
public const string CorruptedChunk = "Png/big-corrupted-chunk.png";
}
public static readonly string[] All =

Loading…
Cancel
Save