diff --git a/challenges/jquery-ajax-and-json.json b/challenges/jquery-ajax-and-json.json
index 92509ffade5..d482a60f3f7 100644
--- a/challenges/jquery-ajax-and-json.json
+++ b/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 buttonelement 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 buttonelement 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",