diff options
author | Timmy Willison <timmywillisn@gmail.com> | 2015-05-04 15:27:12 -0700 |
---|---|---|
committer | Timmy Willison <timmywillisn@gmail.com> | 2015-05-04 15:27:12 -0700 |
commit | e1090c3d2b2a988a5b41f1f1ed9f8d6dcae02200 (patch) | |
tree | 713ef04318030185d6dba550c71c8dbaec6f5486 /test/unit/traversing.js | |
parent | 7a6931de689865f559bed26e797e8cbb5674bbce (diff) | |
download | jquery-e1090c3d2b2a988a5b41f1f1ed9f8d6dcae02200.tar.gz jquery-e1090c3d2b2a988a5b41f1f1ed9f8d6dcae02200.zip |
Selector: add jQuery.uniqueSort; deprecate jQuery.unique
Fixes gh-2228
Diffstat (limited to 'test/unit/traversing.js')
-rw-r--r-- | test/unit/traversing.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/traversing.js b/test/unit/traversing.js index b80b673ff..08b384a7e 100644 --- a/test/unit/traversing.js +++ b/test/unit/traversing.js @@ -696,7 +696,7 @@ test("sort direction", function() { jQuery.each( methodDirections, function( method, reversed ) { var actual = elems[ method ]().get(), - forward = jQuery.unique( [].concat( actual ) ); + forward = jQuery.uniqueSort( [].concat( actual ) ); deepEqual( actual, reversed ? forward.reverse() : forward, "Correct sort direction for " + method ); }); }); |