From 3a5819019458a111252faa8d2707bc394281e51c Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Wed, 30 Oct 2019 12:09:02 +0100 Subject: [PATCH] Updated Request Matching (markdown) --- Request-Matching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Request-Matching.md b/Request-Matching.md index c1fa3dc..5100264 100644 --- a/Request-Matching.md +++ b/Request-Matching.md @@ -220,7 +220,7 @@ server .Given(Request .Create() .WithPath("/jsonmatcher2") - .WithBody(new JsonMatcher({ x = 42, s = "s" })) + .WithBody(new JsonMatcher(new { x = 42, s = "s" })) .UsingPost()) .WithGuid("debaf408-3b23-4c04-9d18-ef1c020e79f2") .RespondWith(Response.Create().WithBody(@"{ ""result"": ""jsonbodytest2"" }"));