From 4593348139369864388d905eddc26ef8763ccf4d Mon Sep 17 00:00:00 2001 From: DayneD89 Date: Tue, 13 Aug 2019 20:35:54 +0100 Subject: [PATCH] Fixed chain example in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e95e4a4..38d008b 100644 --- a/README.md +++ b/README.md @@ -231,8 +231,8 @@ var endpoint2 = endpoint1.Given().Clone().Uri("/endpoint2"); //Do a GET action with the first endpoint configuration endpoint2.Given().When().Get().Then().TestBody("test 1", x => x.id != null).Assert("test 1"); -//Do a POST action with the second endpoint configuration -endpoint2.Given().When().Post().Then().TestBody("test 1", x => x.id != null).Assert("test 1"); +//Do a GET action with the second endpoint configuration +endpoint2.Given().When().Get().Then().TestBody("test 1", x => x.id != null).Assert("test 1"); ``` ### Load Test