diff --git a/seed/challenges/html5-and-css.json b/seed/challenges/html5-and-css.json
index 05f92563584..793ef6f8ce9 100644
--- a/seed/challenges/html5-and-css.json
+++ b/seed/challenges/html5-and-css.json
@@ -1409,7 +1409,7 @@
],
"tests": [
"assert($('ul').length > 0, 'Create a ul element.')",
- "assert($('li').length > 2, 'Add three li elements to your ul element.')",
+ "assert($('ul li').length > 2, 'You should have three li elements within your ul element.')",
"assert(editor.match(/<\\/ul>/g) && editor.match(/
li element has a closing tag.')"
],
@@ -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 > 2, 'You should have three li elements within your ul element.')",
+ "assert($('ol li').length > 2, '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.')"