diff --git a/seed_data/challenges/basic-html5-and-css.json b/seed_data/challenges/basic-html5-and-css.json
index 1bdf18cd55..910293880a 100644
--- a/seed_data/challenges/basic-html5-and-css.json
+++ b/seed_data/challenges/basic-html5-and-css.json
@@ -1587,8 +1587,10 @@
"Here's an example submit button: <button type='submit'>this button submits the form</button>"
],
"tests": [
- "assert(new RegExp('', 'gi').test(editor), 'Be sure to complete your button element with a closing tag.');"
+ "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), 'Be sure that your button element has a closing tag.')"
],
"challengeSeed": [
"",