From 5ade80af3a3e5ef90848302b93270af16e107cab Mon Sep 17 00:00:00 2001 From: Anton Firszov Date: Tue, 11 Feb 2020 00:44:02 +0100 Subject: [PATCH] re-enable skipped test --- tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs b/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs index 5b1d35cb5d..c28aa6b256 100644 --- a/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs +++ b/tests/ImageSharp.Tests/Formats/Bmp/BmpDecoderTests.cs @@ -77,7 +77,7 @@ namespace SixLabors.ImageSharp.Tests.Formats.Bmp where TPixel : struct, IPixel { provider.LimitAllocatorBufferCapacity().InPixels(10); - ImageFormatException ex = Assert.Throws(provider.GetImage); + ImageFormatException ex = Assert.Throws(() => provider.GetImage(BmpDecoder)); Assert.IsType(ex.InnerException); }