diff --git a/seed/challenges/jquery-ajax-and-json.json b/seed/challenges/jquery-ajax-and-json.json
index 92509ffade..d482a60f3f 100644
--- a/seed/challenges/jquery-ajax-and-json.json
+++ b/seed/challenges/jquery-ajax-and-json.json
@@ -160,8 +160,8 @@
"Make all the button
element with the id \"target3\" fadeOut. $('#target3').addClass('animated fadeOut')
."
],
"tests": [
- "$('#target3').hasClass('animated') && $('#target3').hasClass('fadeOut'), 'Select the button
element with the id
of \"target3\" and use the jQuery addClass()
function to give it the classes of \"animated\" and \"fadeOut\".')",
- "assert(!editor.match(/class.*animated/g), 'Only use jQuery to add these classes to the element.')"
+ "assert($('#target3').hasClass('animated') && $('#target3').hasClass('fadeOut'), 'Select the button
element with the id
of \"target3\" and use the jQuery addClass()
function to give it the classes of \"animated\" and \"fadeOut\".');",
+ "assert(!editor.match(/class.*animated/g), 'Only use jQuery to add these classes to the element.');"
],
"challengeSeed": [
"fccss",