From d051d4de2e59e47fa0741dff4f6b357c8c9f8943 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Wed, 31 Mar 2021 15:20:56 +0200 Subject: [PATCH] Tests fixed. --- .../TestHelpers/HandlerTestBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tests/Squidex.Domain.Apps.Entities.Tests/TestHelpers/HandlerTestBase.cs b/backend/tests/Squidex.Domain.Apps.Entities.Tests/TestHelpers/HandlerTestBase.cs index 9d49f75e5..8d53a04fa 100644 --- a/backend/tests/Squidex.Domain.Apps.Entities.Tests/TestHelpers/HandlerTestBase.cs +++ b/backend/tests/Squidex.Domain.Apps.Entities.Tests/TestHelpers/HandlerTestBase.cs @@ -88,7 +88,7 @@ namespace Squidex.Domain.Apps.Entities.TestHelpers return context; } - protected async Task PublishIdempotentAsync(DomainObject domainObject, IAggregateCommand command) where T : class, IDomainState, IEntityWithVersion, new() + protected async Task PublishIdempotentAsync(DomainObject domainObject, IAggregateCommand command) where T : class, IDomainState, new() { var result = await domainObject.ExecuteAsync(command);