This commit is contained in:
Stef Heyenrath
2026-02-14 12:35:15 +01:00
parent b172f700e0
commit c24f2396ff
111 changed files with 152 additions and 183 deletions

View File

@@ -7,7 +7,7 @@ using System.Net.Http.Headers;
using System.Net.NetworkInformation;
using System.Net.Sockets;
using System.Text;
using FluentAssertions;
using AwesomeAssertions;
using Newtonsoft.Json;
using NFluent;
using WireMock.Admin.Mappings;
@@ -333,7 +333,7 @@ public partial class WireMockServerTests
watch.Stop();
// Assert
watch.ElapsedMilliseconds.Should().BeGreaterOrEqualTo(0);
watch.ElapsedMilliseconds.Should().BeGreaterThanOrEqualTo(0);
server.Stop();
}
@@ -387,7 +387,7 @@ public partial class WireMockServerTests
watch.Stop();
// Assert
watch.ElapsedMilliseconds.Should().BeGreaterOrEqualTo(0);
watch.ElapsedMilliseconds.Should().BeGreaterThanOrEqualTo(0);
server.Stop();
}