From 2ad908b3a9ba77ec6883e74b2fbfd820603cce0c Mon Sep 17 00:00:00 2001 From: fuzzyray Date: Mon, 22 Mar 2021 23:54:55 -0500 Subject: [PATCH] fix(learn): correct the instructions for functional tests (#41459) --- .../information-security-projects/anonymous-message-board.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md b/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md index 20970a8e21..d829cc0952 100644 --- a/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md +++ b/curriculum/challenges/english/09-information-security/information-security-projects/anonymous-message-board.md @@ -33,8 +33,8 @@ Write the following tests in `tests/2_functional-tests.js`: - Reporting a thread: PUT request to `/api/threads/{board}` - Creating a new reply: POST request to `/api/replies/{board}` - Viewing a single thread with all replies: GET request to `/api/replies/{board}` -- Deleting a reply with the incorrect password: DELETE request to `/api/threads/{board}` with an invalid `delete_password` -- Deleting a reply with the correct password: DELETE request to `/api/threads/{board}` with a valid `delete_password` +- Deleting a reply with the incorrect password: DELETE request to `/api/replies/{board}` with an invalid `delete_password` +- Deleting a reply with the correct password: DELETE request to `/api/replies/{board}` with a valid `delete_password` - Reporting a reply: PUT request to `/api/replies/{board}` # --hints--