Browse Source

Tests fixed.

pull/574/head
Sebastian 5 years ago
parent
commit
e05839a1d7
  1. 4
      backend/tests/Squidex.Infrastructure.Tests/EventSourcing/PollingSubscriptionTests.cs

4
backend/tests/Squidex.Infrastructure.Tests/EventSourcing/PollingSubscriptionTests.cs

@ -59,7 +59,7 @@ namespace Squidex.Infrastructure.EventSourcing
await WaitAndStopAsync(sut);
A.CallTo(() => eventSubscriber.OnErrorAsync(sut, ex))
.MustNotHaveHappened();
.MustHaveHappened();
}
[Fact]
@ -75,7 +75,7 @@ namespace Squidex.Infrastructure.EventSourcing
await WaitAndStopAsync(sut);
A.CallTo(() => eventSubscriber.OnErrorAsync(sut, ex))
.MustNotHaveHappened();
.MustHaveHappened();
}
[Fact]

Loading…
Cancel
Save