From 26d75cbfd46d3f385b67ce5dd38f7cf9bdc7744d Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Tue, 11 Feb 2020 00:58:15 +0100 Subject: [PATCH] TGA limit --- tests/ImageSharp.Tests/Formats/Tga/TgaDecoderTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Formats/Tga/TgaDecoderTests.cs b/tests/ImageSharp.Tests/Formats/Tga/TgaDecoderTests.cs index 429ff995a..8b0e88220 100644 --- a/tests/ImageSharp.Tests/Formats/Tga/TgaDecoderTests.cs +++ b/tests/ImageSharp.Tests/Formats/Tga/TgaDecoderTests.cs @@ -219,7 +219,7 @@ namespace SixLabors.ImageSharp.Tests.Formats.Tga { TestImageProvider provider = BasicSerializer.Deserialize>(providerDump); - provider.LimitAllocatorBufferCapacity().InPixels(200); + provider.LimitAllocatorBufferCapacity().InPixels(100); using Image image = provider.GetImage(new TgaDecoder()); image.DebugSave(provider, testOutputDetails: nonContiguousBuffersStr);