diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json
index 05f9256358..6c3c3b1481 100644
--- a/challenges/html5-and-css.json
+++ b/challenges/html5-and-css.json
@@ -1483,8 +1483,8 @@
"tests": [
"assert($('ul').length > 0, 'You should have an ul
element on your page.')",
"assert($('ol').length > 0, 'You should have an ol
element on your page.')",
- "assert($('li').length > 5, 'You should have three li
elements within your ul
element.')",
- "assert($('li').length > 5, 'You should have three li
elements within your ol
element.')",
+ "assert($('ul li').length > 5, 'You should have three li
elements within your ul
element.')",
+ "assert($('ol li').length > 5, 'You should have three li
elements within your ol
element.')",
"assert(editor.match(/<\\/ul>/g) && editor.match(/<\\/ul>/g).length === editor.match(/
ul
element has a closing tag.')",
"assert(editor.match(/<\\/ol>/g) && editor.match(/<\\/ol>/g).length === editor.match(/ol
element has a closing tag.')",
"assert(editor.match(/<\\/li>/g) && editor.match(/li
element has a closing tag.')"