From 7a210834983df3d2e13feae6aee1a4769075734c Mon Sep 17 00:00:00 2001 From: Natac13 Date: Tue, 1 Sep 2015 18:31:21 -0400 Subject: [PATCH] Fix the typo in Create Bootstrap Wells; first test had extra > --- challenges/bootstrap.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/bootstrap.json b/challenges/bootstrap.json index a9e04b51be..58fc65c721 100644 --- a/challenges/bootstrap.json +++ b/challenges/bootstrap.json @@ -1769,7 +1769,7 @@ "Nest one div element with the class well within each of your col-xs-6 div elements." ], "tests": [ - "assert($(\"div\").length > 4, 'Add a div element with the class well inside each of your div class=\"col-xs-6\"> elements')", + "assert($(\"div\").length > 4, 'Add a div element with the class well inside each of your div class=\"col-xs-6\" elements')", "assert($(\"div.col-xs-6 div.well\").length > 1, 'Nest both of your div class=\"col-xs-6\" elements within your div class=\"row\" element.')", "assert(editor.match(/<\\/div>/g) && editor.match(/
/g).length === editor.match(/
div elements have closing tags.')" ],