From aac8fce2c566fb805df7a1db57465b274bfcf753 Mon Sep 17 00:00:00 2001 From: Nathan Leniz Date: Sun, 8 Feb 2015 01:17:06 -0500 Subject: [PATCH] Fix failing test for "create a style tag", change rgb(255,0,0) to rgb(0,0,255) --- seed_data/coursewares.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/coursewares.json b/seed_data/coursewares.json index d743390948..6d60c808cf 100644 --- a/seed_data/coursewares.json +++ b/seed_data/coursewares.json @@ -156,7 +156,7 @@ "Note that it's important to have an opening and closing curly braces ({ and }) around each element's style. You also need to make sure your element's style is between the opening and closing style tags. Finally, be sure to add the semicolon to the end of each of the element's styles." ], "tests": [ - "expect($('h2')).to.have.css('color', 'rgb(255, 0, 0)');" + "expect($('h2')).to.have.css('color', 'rgb(0, 0, 255)');" ], "challengeSeed": [ "

hello world

",