diff --git a/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs b/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs index 7e3a79e1..fe9b9b20 100644 --- a/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs +++ b/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs @@ -497,7 +497,11 @@ namespace WireMock.Net.ConsoleApplication .Given(Request.Create() .UsingPost() .WithPath("/post_with_query") + .WithHeader("PRIVATE-TOKEN", "t") .WithParam("name", "stef") + .WithParam("path", "p") + .WithParam("visibility", "Private") + .WithParam("parent_id", "1") ) .RespondWith(Response.Create() .WithBody("OK : post_with_query")