diff --git a/src/WireMock/Server/FluentMockServer.cs b/src/WireMock/Server/FluentMockServer.cs index dc6172dc..8ba597a7 100644 --- a/src/WireMock/Server/FluentMockServer.cs +++ b/src/WireMock/Server/FluentMockServer.cs @@ -247,7 +247,7 @@ namespace WireMock.Server { ctx.Response.StatusCode = 404; - byte[] content = Encoding.UTF8.GetBytes("Mock Server: page not found"); + byte[] content = Encoding.UTF8.GetBytes("No mapping found"); ctx.Response.OutputStream.Write(content, 0, content.Length); } else diff --git a/src/WireMock/project.json b/src/WireMock/project.json index 2cc1256e..4de32033 100644 --- a/src/WireMock/project.json +++ b/src/WireMock/project.json @@ -1,12 +1,12 @@ { "version": "1.0.0.0", "title": "WireMock.Net", - "description": "Lightweigth Http Mocking Server for .Net, inspired by WireMock from the Java landscape.", + "description": "Lightweight Http Mocking Server for .Net, inspired by WireMock from the Java landscape.", "authors": [ "Alexandre Victoor", "Stef Heyenrath" ], "packOptions": { - "summary": "Lightweigth Http Mocking Server for .Net, inspired by WireMock from the Java landscape.", - "tags": [ "tdd", "mock", "http", "wiremock", "test" ], + "summary": "Lightweight Http Mocking Server for .Net, inspired by WireMock from the Java landscape.", + "tags": [ "tdd", "mock", "http", "wiremock", "test", "server", "unittest" ], "owners": [ "Stef Heyenrath" ], "repository": { "type": "git", @@ -28,7 +28,7 @@ "type": "build" }, "Handlebars.Net": "1.8.0", - "Newtonsoft.Json": "9.0.1", + "Newtonsoft.Json": "6.0.8", "XPath2": "1.0.3.1" },