Fixed a couple problems found in the test suite. First, IE doesn't like it when...
[jquery.git] / test / unit / fx.js
index 5f6ad39..1204e26 100644 (file)
@@ -1,12 +1,13 @@
 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' );
+               start();
        });
 });