From 9fca02887daab43f1aba5f45b0e61e461817369e Mon Sep 17 00:00:00 2001 From: Sergio Pedri Date: Sun, 13 Dec 2020 01:08:01 +0100 Subject: [PATCH] Remove allocation constrained test for bokeh blur --- .../Processing/Processors/Convolution/BokehBlurTest.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/ImageSharp.Tests/Processing/Processors/Convolution/BokehBlurTest.cs b/tests/ImageSharp.Tests/Processing/Processors/Convolution/BokehBlurTest.cs index 6c48cf843d..666fbdd93a 100644 --- a/tests/ImageSharp.Tests/Processing/Processors/Convolution/BokehBlurTest.cs +++ b/tests/ImageSharp.Tests/Processing/Processors/Convolution/BokehBlurTest.cs @@ -173,13 +173,5 @@ public void BokehBlurFilterProcessor_Bounded(TestImageProvider p testOutputDetails: value.ToString(), appendPixelTypeToFileName: false); } - - [Theory] - [WithTestPatternImages(100, 300, PixelTypes.Bgr24)] - public void WorksWithDiscoBuffers(TestImageProvider provider) - where TPixel : unmanaged, IPixel - { - provider.RunBufferCapacityLimitProcessorTest(41, c => c.BokehBlur()); - } } }