diff --git a/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs b/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs index a1874422..3a4f60d6 100644 --- a/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs +++ b/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs @@ -299,7 +299,7 @@ namespace WireMock.Net.ConsoleApplication server .Given(Request.Create() - .WithPath("/needs-a-key") + .WithPath("/does-need-a-key") .UsingGet() .WithHeader("api-key", "*", MatchBehaviour.AcceptOnMatch) .UsingAnyMethod()) @@ -309,7 +309,7 @@ namespace WireMock.Net.ConsoleApplication server .Given(Request.Create() - .WithPath("/needs-a-key") + .WithPath("/doesnot-need-a-key") .UsingGet() .WithHeader("api-key", "*", MatchBehaviour.RejectOnMatch) .UsingAnyMethod())