Browse Source

Tests fixed.

pull/680/head
Sebastian Stehle 5 years ago
parent
commit
d051d4de2e
  1. 2
      backend/tests/Squidex.Domain.Apps.Entities.Tests/TestHelpers/HandlerTestBase.cs

2
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<object> PublishIdempotentAsync<T>(DomainObject<T> domainObject, IAggregateCommand command) where T : class, IDomainState<T>, IEntityWithVersion, new()
protected async Task<object> PublishIdempotentAsync<T>(DomainObject<T> domainObject, IAggregateCommand command) where T : class, IDomainState<T>, new()
{
var result = await domainObject.ExecuteAsync(command);

Loading…
Cancel
Save