From 760fa4e360c104a795e0d840cf10c0797f3cd332 Mon Sep 17 00:00:00 2001 From: Quincy Larson Date: Wed, 12 Aug 2015 02:00:24 -0700 Subject: [PATCH] fix issue discovered by @reddraft --- challenges/jquery.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/jquery.json b/challenges/jquery.json index 4fa194e322d..8c6d7214a12 100644 --- a/challenges/jquery.json +++ b/challenges/jquery.json @@ -679,7 +679,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, 255, 0), 'Your \"target6\" element should have green text.')", + "assert($(\"#target6\").css(\"color\") === 'rgb(0, 128, 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.')" ],