diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index e2385fc21e1791..20f548b1a45ec9 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -2527,7 +2527,7 @@ "" ], "tests": [ - "assert($(\"div\").children(\"p\").length > 1, 'message: Nest your p element inside your div element.');", + "assert($(\"div\").children(\"p\").length > 1, 'message: Nest your p elements inside your div element.');", "assert($(\"div\").children(\"ul\").length > 0, 'message: Nest your ul element inside your div element.');", "assert($(\"div\").children(\"ol\").length > 0, 'message: Nest your ol element inside your div element.');", "assert(code.match(/<\\/div>/g) && code.match(/<\\/div>/g).length === code.match(/
/g).length, 'message: Make sure your div element has a closing tag.');"