diff options
author | Manoj Kumar <nithmanoj@gmail.com> | 2016-08-14 10:54:16 +0000 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-11-30 12:22:24 +0100 |
commit | 1b9575b9d14399e9426b9eacdd92b3717846c3f2 (patch) | |
tree | cb0991e1c7eda7b3b496f52d09b361e8e6425016 /test/unit/queue.js | |
parent | 5b4cb0d33731a58384e02ad51e703e7dcb00e424 (diff) | |
download | jquery-1b9575b9d14399e9426b9eacdd92b3717846c3f2.tar.gz jquery-1b9575b9d14399e9426b9eacdd92b3717846c3f2.zip |
Core: Deprecate jQuery.isArray
Fixes gh-2961
Closes gh-3278
Diffstat (limited to 'test/unit/queue.js')
-rw-r--r-- | test/unit/queue.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/queue.js b/test/unit/queue.js index 2248c68d4..0a6862d6b 100644 --- a/test/unit/queue.js +++ b/test/unit/queue.js @@ -128,7 +128,7 @@ QUnit.test( "jQuery.queue should return array while manipulating the queue", fun var div = document.createElement( "div" ); - assert.ok( jQuery.isArray( jQuery.queue( div, "fx", jQuery.noop ) ), "jQuery.queue should return an array while manipulating the queue" ); + assert.ok( Array.isArray( jQuery.queue( div, "fx", jQuery.noop ) ), "jQuery.queue should return an array while manipulating the queue" ); } ); QUnit.test( "delay()", function( assert ) { |