Possible bug on html testing - Unordered List

Tell us what’s happening:
I think there is a bug that doesn’t detect the </li>

// running tests
Your li elements should have closing tags.
// tests completed

Your code so far

 <h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<ul>
  <li>milk</li>
  <li>fish</li>
  <li>meat</li>
</ul>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36.

Challenge: Create a Bulleted Unordered List

Link to the challenge:

Are using an l or a 1? I can’t quite tell.

Edit, that’s not it.

Your code passes for me on chrome. Try using it if you are on a different browser.

2 Likes

solved,
I had some code commented on top, and there were no closing tags in there,
I didn’t know the test will read also the comment.