aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/fx.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2009-09-29 19:49:43 +0000
committerJohn Resig <jeresig@gmail.com>2009-09-29 19:49:43 +0000
commit4bda398e6aa63082c41bb0d06fcc184acd7f76c5 (patch)
tree055872d6d11c47900bdd8cae961fbfdc593ccaa6 /test/unit/fx.js
parentf8b7d391e6baa991dd7f8761ee50871aefef71b8 (diff)
downloadjquery-4bda398e6aa63082c41bb0d06fcc184acd7f76c5.tar.gz
jquery-4bda398e6aa63082c41bb0d06fcc184acd7f76c5.zip
Switched from using QUnit's isObj/isSet to the more robust same method.
Diffstat (limited to 'test/unit/fx.js')
-rw-r--r--test/unit/fx.js2
1 files changed, 1 insertions, 1 deletions
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 () {