From 52a98e82f0276ff85dae9f1a089fa85065db4593 Mon Sep 17 00:00:00 2001 From: Brian Popow Date: Thu, 30 Jan 2020 15:26:56 +0100 Subject: [PATCH] Fix some leftover stylecop warnings --- .../Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ImageSharp.Tests/Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs b/tests/ImageSharp.Tests/Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs index 22fcfa6fb..dd497e57e 100644 --- a/tests/ImageSharp.Tests/Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs +++ b/tests/ImageSharp.Tests/Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs @@ -21,12 +21,12 @@ namespace SixLabors.ImageSharp.Memory.Tests private const int PoolSelectorThresholdInBytes = MaxPooledBufferSizeInBytes / 2; /// - /// Contains SUT for in-process tests. + /// Gets the SUT for in-process tests. /// private MemoryAllocatorFixture LocalFixture { get; } = new MemoryAllocatorFixture(); /// - /// Contains SUT for tests executed by , + /// Gets the SUT for tests executed by , /// recreated in each external process. /// private static MemoryAllocatorFixture StaticFixture { get; } = new MemoryAllocatorFixture();