From 6a1d4f1a80e09e3857f25bb6eb7b190a3a9a4de0 Mon Sep 17 00:00:00 2001 From: jeresig Date: Wed, 22 Sep 2010 23:28:57 -0400 Subject: [PATCH] e3463946e19f2eb53d909fc2b59cc1c8636d21bd actually fixed a previously undicovered but with setting auto, adjust the effects test suite accordingly. Thanks to @bugbegone for the catch. --- test/unit/effects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/effects.js b/test/unit/effects.js index f82c4b1..cc6d365 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -392,7 +392,7 @@ jQuery.each( { return prop == "opacity" ? 1 : ""; }, "JS Auto": function(elem,prop){ - jQuery(elem).css(prop,"auto") + jQuery(elem).css(prop,"") .text("This is a long string of text."); return prop == "opacity" ? 1 : ""; }, -- 1.7.10.4