diff --git a/seed/challenges/jquery.json b/seed/challenges/jquery.json index 5dd55da4b71..23d6e92ff3a 100644 --- a/seed/challenges/jquery.json +++ b/seed/challenges/jquery.json @@ -160,7 +160,8 @@ "Make all the button element with the id \"target3\" fadeOut. $(\"#target3\").addClass(\"animated fadeOut\")." ], "tests": [ - "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($(\"#target3\").hasClass(\"animated\"), 'Select the buttonelement with the id of \"target3\" and use the jQuery addClass() function to give it the class of \"animated\".');", + "assert($(\"#target3\").hasClass(\"fadeOut\"), 'Target the element with the id target3 and use the jQuery addClass() function to give it the class \"fadeOut\".')", "assert(!editor.match(/class.*animated/g), 'Only use jQuery to add these classes to the element.');" ], "challengeSeed": [