From 2f603359fecca5b4873c45775b293702a2c651e3 Mon Sep 17 00:00:00 2001 From: jeresig Date: Wed, 22 Sep 2010 23:43:55 -0400 Subject: [PATCH] Discovered that another effects bug was fixed with the recent CSS changes (namely that show animations always went to auto, even if they weren't supposed to). Test suite adjusted accordingly. --- test/unit/effects.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/unit/effects.js b/test/unit/effects.js index cc6d3651..ed6faa95 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -516,7 +516,12 @@ jQuery.each( { if ( t_h == "show" ) { var old_h = jQuery.css(this, "height"); jQuery(this).append("
Some more text
and some more..."); - notEqual(jQuery.css(this, "height") + "px", old_h, "Make sure height is auto."); + + if ( /Auto/.test( fn ) ) { + notEqual(jQuery.css(this, "height"), old_h, "Make sure height is auto."); + } else { + equals(jQuery.css(this, "height"), old_h, "Make sure height is not auto."); + } } start();