From 4ae7234736fd501110a7bf2acea6cc68e24bd4cd Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Mon, 13 Jul 2009 19:24:23 +0000 Subject: [PATCH] Updates css() tests to use hex rather than color names --- test/unit/css.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/css.js b/test/unit/css.js index 9f84d86..89f8398 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -85,7 +85,7 @@ test("css(String, Function)", function() { try { expect(3); - var colors = ["red", "green", "blue"]; + var colors = ["#ff0000", "#00ff00", "#0000ff"]; jQuery("
" + "
" + @@ -116,7 +116,7 @@ test("css(Object) where values are Functions", function() { try { expect(3); - var colors = ["red", "green", "blue"]; + var colors = ["#ff0000", "#00ff00", "#0000ff"]; jQuery("
" + "
" + -- 1.7.10.4