Net5 issue (#579)

* 472

* .

* .

* p

* buffers

* 3

* Fix date

* fix
This commit is contained in:
Stef Heyenrath
2021-02-02 22:21:30 +01:00
committed by GitHub
parent 48c50e8207
commit e4071b9c6a
10 changed files with 699 additions and 199 deletions

View File

@@ -280,7 +280,7 @@ namespace WireMock.Net.ConsoleApplication
.WithBody("hi"));
server
.Given(Request.Create().WithPath("/data").UsingPost().WithBody(b => b.Contains("e")))
.Given(Request.Create().WithPath("/data").UsingPost().WithBody(b => b != null && b.Contains("e")))
.AtPriority(999)
.RespondWith(Response.Create()
.WithStatusCode(201)