From 3470ca57a304c8d0ac3792035db5b283f292b473 Mon Sep 17 00:00:00 2001 From: sidemt Date: Wed, 27 Jul 2022 02:40:20 +0900 Subject: [PATCH] fix(curriculum): remove duplicate test from CatPhotoApp Step 23 (#47033) --- .../5dfb6a35eacea3f48c6300b4.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfb6a35eacea3f48c6300b4.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfb6a35eacea3f48c6300b4.md index 91c7a236750..124984fe18b 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfb6a35eacea3f48c6300b4.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-html-by-building-a-cat-photo-app/5dfb6a35eacea3f48c6300b4.md @@ -15,16 +15,6 @@ After the image nested in the `figure` element, add a `figcaption` element with # --hints-- -The Lasagna `img` element should be nested in the `figure` element. - -```js -assert( - document.querySelector('figure > img') && - document.querySelector('figure > img').getAttribute('src').toLowerCase() === - 'https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg' -); -``` - Your `figcaption` element should have an opening tag. Opening tags have the following syntax: ``. ```js