From b39716539b30bab96b8be66f1a5a63acaf5384a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lasse=20J=C3=B8rgensen?= <28780271+lasjorg@users.noreply.github.com> Date: Wed, 9 Mar 2022 10:52:31 +0100 Subject: [PATCH] fix: use an invalid TLD for the test URL (#45375) --- .../url-shortener-microservice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/url-shortener-microservice.md b/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/url-shortener-microservice.md index b10b50c3a9..7b1bf8c31e 100644 --- a/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/url-shortener-microservice.md +++ b/curriculum/challenges/english/05-back-end-development-and-apis/back-end-development-and-apis-projects/url-shortener-microservice.md @@ -96,7 +96,7 @@ async (getUserInput) => { const res = await fetch(url + '/api/shorturl', { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, - body: `url=ftp:/john-doe.org` + body: `url=ftp:/john-doe.invalidTLD` }); if (res.ok) { const { error } = await res.json();