fix(curriculum): remove duplicate test from CatPhotoApp Step 23 (#47033)

This commit is contained in:
sidemt
2022-07-27 02:40:20 +09:00
committed by GitHub
parent c14fc27039
commit 3470ca57a3

View File

@@ -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: `<elementName>`.
```js