Removed a unit test that tested to see if queued objects were of a certain type....
[jquery.git] / test / unit / fx.js
index 1204e26..5f6ad39 100644 (file)
@@ -1,13 +1,12 @@
 module("fx");
 
 test("animate(Hash, Object, Function)", function() {
-       expect(1);
+       expect(3);
        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' );
-               start();
        });
 });