Browse Source

Fix some leftover stylecop warnings

pull/1090/head
Brian Popow 6 years ago
parent
commit
6f0e6e9a26
  1. 4
      tests/ImageSharp.Tests/Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs

4
tests/ImageSharp.Tests/Memory/Alocators/ArrayPoolMemoryAllocatorTests.cs

@ -21,12 +21,12 @@ namespace SixLabors.ImageSharp.Memory.Tests
private const int PoolSelectorThresholdInBytes = MaxPooledBufferSizeInBytes / 2;
/// <summary>
/// Contains SUT for in-process tests.
/// Gets the SUT for in-process tests.
/// </summary>
private MemoryAllocatorFixture LocalFixture { get; } = new MemoryAllocatorFixture();
/// <summary>
/// Contains SUT for tests executed by <see cref="RemoteExecutor"/>,
/// Gets the SUT for tests executed by <see cref="RemoteExecutor"/>,
/// recreated in each external process.
/// </summary>
private static MemoryAllocatorFixture StaticFixture { get; } = new MemoryAllocatorFixture();

Loading…
Cancel
Save