From a739c14dc06e6d6feb86438f8972f06bcda44f4c Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Tue, 10 Mar 2026 18:35:52 +0100 Subject: [PATCH] Fix tests --- .../Schemas/DomainObject/Guards/GuardSchemaTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/Squidex.Domain.Apps.Entities.Tests/Schemas/DomainObject/Guards/GuardSchemaTests.cs b/backend/tests/Squidex.Domain.Apps.Entities.Tests/Schemas/DomainObject/Guards/GuardSchemaTests.cs index ecb1c2e23..06249f80f 100644 --- a/backend/tests/Squidex.Domain.Apps.Entities.Tests/Schemas/DomainObject/Guards/GuardSchemaTests.cs +++ b/backend/tests/Squidex.Domain.Apps.Entities.Tests/Schemas/DomainObject/Guards/GuardSchemaTests.cs @@ -669,7 +669,7 @@ public class GuardSchemaTests : GivenContext, IClassFixture }; ValidationAssert.Throws(() => GuardSchema.CanUpdateSchema(command), - new ValidationError("Size must be between 1 and 3.", "Properties.SearchFields")); + new ValidationError("Size must be between 1 and 4.", "Properties.SearchFields")); } private CreateSchema CreateCommand(CreateSchema command)