From 7df555a2ffeaf90d02b8102a967314d9cc4c1428 Mon Sep 17 00:00:00 2001 From: TCYRUS Date: Tue, 28 Jul 2015 13:17:05 -0400 Subject: [PATCH] Fix Issue #1015 Fix two of the tests in "Waypoint: Create an Ordered List" --- challenges/html5-and-css.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/html5-and-css.json b/challenges/html5-and-css.json index dbb0f037fe..70dbddd5c4 100644 --- a/challenges/html5-and-css.json +++ b/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(/