Browse Source

[SL.Core] fix order of paramaters

pull/1087/head
Scott Williams 9 years ago
committed by Dirk Lemstra
parent
commit
43fe6eaf89
  1. 4
      tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs

4
tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs

@ -231,7 +231,7 @@ namespace SixLabors.Helpers.Tests
[Theory]
[InlineData(2, 2)]
[InlineData(2, 4)]
[InlineData(4, 3)]
public void ReadOnlySpan_MustBeSizedAtLeast_DoesNotThowException(int leftSize, int rightSize)
{
DebugGuard.MustBeSizedAtLeast(new ReadOnlySpan<int>(new int[leftSize]), new ReadOnlySpan<int>(new int[rightSize]), "myParamName");
@ -239,7 +239,7 @@ namespace SixLabors.Helpers.Tests
[Theory]
[InlineData(2, 2)]
[InlineData(2, 4)]
[InlineData(4, 3)]
public void Span_MustBeSizedAtLeast_DoesNotThowException(int leftSize, int rightSize)
{
DebugGuard.MustBeSizedAtLeast(new Span<int>(new int[leftSize]), new Span<int>(new int[rightSize]), "myParamName");

Loading…
Cancel
Save