diff --git a/tests/ImageSharp.Tests/Processing/Convolution/MedianBlurTest.cs b/tests/ImageSharp.Tests/Processing/Convolution/MedianBlurTest.cs index db1cbefb4..aac1a1eca 100644 --- a/tests/ImageSharp.Tests/Processing/Convolution/MedianBlurTest.cs +++ b/tests/ImageSharp.Tests/Processing/Convolution/MedianBlurTest.cs @@ -18,7 +18,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Convolution var processor = this.Verify(); Assert.Equal(3, processor.Radius); - Assert.Equal(true, processor.PreserveAlpha); + Assert.True(processor.PreserveAlpha); } [Fact] @@ -28,7 +28,7 @@ namespace SixLabors.ImageSharp.Tests.Processing.Convolution var processor = this.Verify(this.rect); Assert.Equal(5, processor.Radius); - Assert.Equal(false, processor.PreserveAlpha); + Assert.False(processor.PreserveAlpha); } } }