From 798aaa4b6b00668947095727598c8f17913e460a Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Fri, 21 Feb 2020 00:32:49 +0100 Subject: [PATCH] fix test execution --- .../Formats/Jpg/JpegDecoderTests.Progressive.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Formats/Jpg/JpegDecoderTests.Progressive.cs b/tests/ImageSharp.Tests/Formats/Jpg/JpegDecoderTests.Progressive.cs index c0169992d1..974f5b13b4 100644 --- a/tests/ImageSharp.Tests/Formats/Jpg/JpegDecoderTests.Progressive.cs +++ b/tests/ImageSharp.Tests/Formats/Jpg/JpegDecoderTests.Progressive.cs @@ -40,10 +40,13 @@ namespace SixLabors.ImageSharp.Tests.Formats.Jpg } string providerDump = BasicSerializer.Serialize(provider); + + // RunTest(providerDump, enforceDiscontiguousBuffers ? "Disco" : string.Empty); RemoteExecutor.Invoke( RunTest, providerDump, - enforceDiscontiguousBuffers ? "Disco" : string.Empty); + enforceDiscontiguousBuffers ? "Disco" : string.Empty) + .Dispose(); } } }