remove nfluent

This commit is contained in:
Stef Heyenrath
2026-02-26 22:02:54 +01:00
parent c4c8ad3fa9
commit 62d0b0db5b
142 changed files with 899 additions and 1020 deletions

View File

@@ -3,9 +3,8 @@
using System.Collections.Specialized;
using System.Net;
using System.Net.Http;
using AwesomeAssertions;
using Moq;
using NFluent;
using WireMock.Logging;
using WireMock.RequestBuilders;
using WireMock.ResponseBuilders;
@@ -147,9 +146,9 @@ public class ObservableLogEntriesTest
var countResponsesWithStatusNotOk = responses.Count(r => r.StatusCode != HttpStatusCode.OK);
// Assert
Check.That(countResponsesWithStatusNotOk).Equals(0);
Check.That(count).Equals(expectedCount);
countResponsesWithStatusNotOk.Should().Be(0);
count.Should().Be(expectedCount);
server.Dispose();
}
}
}