Skip to content

Commit

Permalink
v8 sort
Browse files Browse the repository at this point in the history
  • Loading branch information
erh committed Nov 16, 2010
1 parent 8bf24aa commit b31047a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jstests/geo_sort1.js
Expand Up @@ -17,6 +17,6 @@ a = q.clone().map( m );
b = q.clone().sort( { foo : 1 } ).map( m );

assert.neq( a , b , "A" );
a = Array.sort( a );
b = Array.sort( b );
a.sort();
b.sort();
assert.eq( a , b , "B" );

0 comments on commit b31047a

Please sign in to comment.