diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json
index dbb0f037fef..70dbddd5c4c 100644
--- a/seed/challenges/html5-and-css.json
+++ b/seed/challenges/html5-and-css.json
@@ -1478,8 +1478,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.')"