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