From f4861d9bab23fa840139df07a098b2ad6ad005cb Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Fri, 14 Feb 2020 16:34:52 +0100 Subject: [PATCH] /needs-a-key --- examples/WireMock.Net.Console.Net452.Classic/MainApp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs b/examples/WireMock.Net.Console.Net452.Classic/MainApp.cs index 3a4f60d6..a1874422 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("/does-need-a-key") + .WithPath("/needs-a-key") .UsingGet() .WithHeader("api-key", "*", MatchBehaviour.AcceptOnMatch) .UsingAnyMethod()) @@ -309,7 +309,7 @@ namespace WireMock.Net.ConsoleApplication server .Given(Request.Create() - .WithPath("/doesnot-need-a-key") + .WithPath("/needs-a-key") .UsingGet() .WithHeader("api-key", "*", MatchBehaviour.RejectOnMatch) .UsingAnyMethod())