WireMock.Net.TUnitTests / 10

This commit is contained in:
Stef Heyenrath
2026-02-14 13:15:00 +01:00
parent 6980468356
commit 15393bb2b1
13 changed files with 33 additions and 266 deletions

View File

@@ -123,7 +123,7 @@ public class ResponseWithCallbackTests
.WithHeader("H2", "X2")
.WithBody(async req =>
{
await Task.Delay(1).ConfigureAwait(false);
await Task.Delay(1);
return $"path: {req.Path}";
});