Skip to content

Commit

Permalink
Fix previously broken test with proper sorting of handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
micahr committed Mar 29, 2016
1 parent 5acb33e commit 8e30bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function sortNumericalKeys(obj) {
})
.value()
.sort(function(a, b) {
return a > b;
return a - b;
});
}

Expand Down

0 comments on commit 8e30bed

Please sign in to comment.