diff --git a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md index 3dc0672250..1e97be2779 100644 --- a/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md +++ b/curriculum/challenges/english/03-front-end-libraries/bootstrap/add-elements-within-your-bootstrap-wells.english.md @@ -21,11 +21,11 @@ Nest three button elements within each of your well button elements within each of your div elements with class well. - testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3, 'Nest three button elements within each of your div elements with class well.'); + testString: assert($("div.well:eq(0)").children("button").length === 3 && $("div.well:eq(1)").children("button").length === 3); - text: You should have a total of 6 button elements. - testString: assert($("button") && $("button").length > 5, 'You should have a total of 6 button elements.'); + testString: assert($("button") && $("button").length > 5); - text: Make sure all your button elements have closing tags. - testString: assert(code.match(/<\/button>/g) && code.match(/