Tagging the 1.2.3b release.
[jquery.git] / test / unit / fx.js
index 481b172..1204e26 100644 (file)
@@ -1,17 +1,12 @@
 module("fx");
 
 test("animate(Hash, Object, Function)", function() {
-       expect(3);
+       expect(1);
        stop();
        var hash = {opacity: 'show'};
        var hashCopy = $.extend({}, hash);
        $('#foo').animate(hash, 0, function() {
                ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' );
-       });
-       // using contents will get comments regular, text, and comment nodes
-       $("#nonnodes").contents().animate({paddingLeft:"5px"}, 100, function () {
-               equals(this.nodeType, 1, "Check node,textnode,comment animate just does real nodes" );
-               equals($(this).css("paddingLeft"), "5px", "Check node,textnode,comment animate just does real nodes" );
                start();
        });
 });