diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json index 2816f572bb4..93b52154404 100644 --- a/seed_data/challenges/basic-html5-and-css.json +++ b/seed_data/challenges/basic-html5-and-css.json @@ -1581,7 +1581,7 @@ "tests": [ "assert($('form').length > 0, 'Wrap your text input element within a form element.')", "assert($('form').attr('action'), 'Your form element should have an action attribute.')", - "assert(editor.match(/<\\/form>/g) && editor.match(/<\\/form>/g).length === editor.match(/
/g).length, 'Make sure your form element has a closing tag.')", + "assert(editor.match(/<\\/form>/g) && editor.match(//g).length === editor.match(/form element has a closing tag.')", "assert(editor.match(/\\/submit-cat-photo/ig), 'Make sure your form action is set to /submit-cat-photo.')" ], "challengeSeed": [ @@ -1657,7 +1657,7 @@ "assert($('form').children('button').length > 0, 'Your form should have a button inside it.')", "assert($('button').attr('type') === 'submit', 'Your submit button should have be of input type \"submit\".')", "assert($('button').text().match(/submit/gi), 'Your submit button should have the text \"submit\".')", - "assert(editor.match(/<\\/button>/g) && editor.match(/<\\/button>/g).length === editor.match(/