aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-09-22 23:28:57 -0400
committerjeresig <jeresig@gmail.com>2010-09-22 23:28:57 -0400
commit6a1d4f1a80e09e3857f25bb6eb7b190a3a9a4de0 (patch)
tree049158c429bde1b9247dde345ebe9861090d069d
parenta7aa86d0b1a890468c945e473a1284352499b967 (diff)
downloadjquery-6a1d4f1a80e09e3857f25bb6eb7b190a3a9a4de0.tar.gz
jquery-6a1d4f1a80e09e3857f25bb6eb7b190a3a9a4de0.zip
e3463946e19f2eb53d909fc2b59cc1c8636d21bd actually fixed a previously undicovered but with setting auto, adjust the effects test suite accordingly. Thanks to @bugbegone for the catch.
-rw-r--r--test/unit/effects.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js
index f82c4b177..cc6d36512 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 : "";
},