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]