From 8fcac7474d62201ded4e17ff2d602a9c7fcdae43 Mon Sep 17 00:00:00 2001 From: Scott Williams Date: Tue, 27 Jun 2017 08:35:49 +0100 Subject: [PATCH] [SL.Core] add reason --- tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs b/tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs index e1d8b1f22..1e651f267 100644 --- a/tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs +++ b/tests/SixLabors.Core.Tests/Helpers/DebugGuardTests.cs @@ -230,7 +230,7 @@ namespace SixLabors.Helpers.Tests [Theory] [InlineData(2, 2)] [InlineData(4, 3)] - public void MustBeSizedAtLeast_ReadOnlySpan_DoesNotThowException(int leftSize, int rightSize) + public void MustBeSizedAtLeast_ReadOnlySpan_LengthIsEqualOrGreater_DoesNotThowException(int leftSize, int rightSize) { DebugGuard.MustBeSizedAtLeast(new ReadOnlySpan(new int[leftSize]), new ReadOnlySpan(new int[rightSize]), "myParamName"); } @@ -238,7 +238,7 @@ namespace SixLabors.Helpers.Tests [Theory] [InlineData(2, 2)] [InlineData(4, 3)] - public void MustBeSizedAtLeast_Span_DoesNotThowException(int leftSize, int rightSize) + public void MustBeSizedAtLeast_Span_LengthIsEqualOrGreater_DoesNotThowException(int leftSize, int rightSize) { DebugGuard.MustBeSizedAtLeast(new Span(new int[leftSize]), new Span(new int[rightSize]), "myParamName"); }