From 586948676d21c8f94b312f0fa21b416c7d31c6d0 Mon Sep 17 00:00:00 2001 From: Avd6977 Date: Tue, 25 Sep 2018 13:29:53 -0500 Subject: [PATCH] Update language Updating language for multiple files to be "than or equal to" instead of "or equals than" --- .../Operations/ValidateContent/DateTimeFieldTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Squidex.Domain.Apps.Core.Tests/Operations/ValidateContent/DateTimeFieldTests.cs b/tests/Squidex.Domain.Apps.Core.Tests/Operations/ValidateContent/DateTimeFieldTests.cs index 2c6ff0c72..ac74d57ad 100644 --- a/tests/Squidex.Domain.Apps.Core.Tests/Operations/ValidateContent/DateTimeFieldTests.cs +++ b/tests/Squidex.Domain.Apps.Core.Tests/Operations/ValidateContent/DateTimeFieldTests.cs @@ -57,7 +57,7 @@ namespace Squidex.Domain.Apps.Core.Operations.ValidateContent await sut.ValidateAsync(CreateValue(FutureDays(0)), errors); errors.Should().BeEquivalentTo( - new[] { $"Must be greater or equals than '{FutureDays(10)}'." }); + new[] { $"Must be greater than or equal to '{FutureDays(10)}'." }); } [Fact] @@ -68,7 +68,7 @@ namespace Squidex.Domain.Apps.Core.Operations.ValidateContent await sut.ValidateAsync(CreateValue(FutureDays(20)), errors); errors.Should().BeEquivalentTo( - new[] { $"Must be less or equals than '{FutureDays(10)}'." }); + new[] { $"Must be less than or equal to '{FutureDays(10)}'." }); } [Fact]