diff --git a/seed/challenges/basic-html5-and-css.json b/seed/challenges/basic-html5-and-css.json index 0bb1aceb12ba07..bc93160d7b3d1f 100644 --- a/seed/challenges/basic-html5-and-css.json +++ b/seed/challenges/basic-html5-and-css.json @@ -1800,7 +1800,7 @@ ], "tests": [ "assert($('form').children('button').length > 0, 'Your form should have a button inside it.')", - "assert($('button').attr('type') === 'submit', 'Your submit button should be of input type \"submit\".')", + "assert($('button').attr('type') === 'submit', 'Your submit button should have the attribute \"type\" set to \"submit\".')", "assert($('button').text().match(/submit/gi), 'Your submit button should have the text \"submit\".')", "assert(editor.match(/<\\/button>/g) && editor.match(/