From 133c91fd16d2d2b42dfc3699904fa5c730d97b53 Mon Sep 17 00:00:00 2001 From: Brett Guillory Date: Mon, 10 Aug 2015 13:20:18 -0500 Subject: [PATCH] Fix for incorrect RGB test value RGB test value was testing for (0,0,255) which is B, should be testing for (0, 255,0), which is green. --- seed/challenges/jquery-ajax-and-json.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/jquery-ajax-and-json.json b/seed/challenges/jquery-ajax-and-json.json index fa3f8641a9d..b024e4ef773 100644 --- a/seed/challenges/jquery-ajax-and-json.json +++ b/seed/challenges/jquery-ajax-and-json.json @@ -674,7 +674,7 @@ "Here's an example of how you would use the children() function: $('#left-well').children().css('color', 'blue')" ], "tests": [ - "assert($('#target6').css('color') === 'rgb(0, 0, 255)', 'Your \"target6\" element should have green text.')", + "assert($('#target6').css('color') === 'rgb(0, 255, 0), 'Your \"target6\" element should have green text.')", "assert(!editor.match(/\\.children\\(\\)\\.css/g), 'You should use the children() function to modify these elements.')", "assert(!editor.match(/
/g), 'Only use jQuery to add these classes to the element.')" ],