diff --git a/http-tests.md b/http-tests.md index 94614457b1d..64fb84184f8 100644 --- a/http-tests.md +++ b/http-tests.md @@ -305,7 +305,7 @@ class ExampleTest extends TestCase } ``` -Alternatively, you may use the `dd`, `ddHeaders`, `ddSession`, and `ddJson` methods to dump information about the response and then stop execution: +Alternatively, you may use the `dd`, `ddHeaders`, `ddBody`, `ddJson`, and `ddSession` methods to dump information about the response and then stop execution: ```php tab=Pest get('/'); + $response->dd(); $response->ddHeaders(); - $response->ddSession(); + $response->ddBody(); $response->ddJson(); - $response->dd(); + $response->ddSession(); }); ```