From 4bda398e6aa63082c41bb0d06fcc184acd7f76c5 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 29 Sep 2009 19:49:43 +0000 Subject: Switched from using QUnit's isObj/isSet to the more robust same method. --- test/unit/fx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/unit/fx.js') diff --git a/test/unit/fx.js b/test/unit/fx.js index 6b81322e2..c47fe558f 100644 --- a/test/unit/fx.js +++ b/test/unit/fx.js @@ -57,7 +57,7 @@ test("animate option (queue === false)", function () { $foo.animate({width:'100px'}, 3000, function () { // should finish after unqueued animation so second order.push(2); - isSet( order, [ 1, 2 ], "Animations finished in the correct order" ); + same( order, [ 1, 2 ], "Animations finished in the correct order" ); start(); }); $foo.animate({fontSize:'2em'}, {queue:false, duration:10, complete:function () { -- cgit v1.2.3