diff --git a/WireMock-as-a-standalone-process.md b/WireMock-as-a-standalone-process.md index e1f15cc..b720e91 100644 --- a/WireMock-as-a-standalone-process.md +++ b/WireMock-as-a-standalone-process.md @@ -25,7 +25,7 @@ class Program static void Main(string[] args) { // see source code for all the possible properties - var settings = new FluentMockServerSettings + var settings = new WireMockServerSettings { AllowPartialMapping=true, StartAdminInterface=true @@ -46,8 +46,8 @@ static void Main(string[] args) if (args.Length == 0 || !int.TryParse(args[0], out port)) port = 8080; - var server = FluentMockServer.Start(port); - Console.WriteLine("FluentMockServer running at {0}", string.Join(",", server.Ports)); + var server = WireMockServer.Start(port); + Console.WriteLine("WireMockServer running at {0}", string.Join(",", server.Ports)); // Order of rules matters. First matching is taken. server