Skip to content

Commit

Permalink
fix tyop
Browse files Browse the repository at this point in the history
  • Loading branch information
maw committed Sep 9, 2010
1 parent cd93790 commit 83c7a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/arrays.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ $(document).ready(function() {
equals(_.intersect(stooges, leaders).join(''), 'moe', 'can take the set intersection of two arrays');
equals(_(stooges).intersect(leaders).join(''), 'moe', 'can perform an OO-style intersection');
var result = (function(){ return _.intersect(arguments, leaders); })('moe', 'curly', 'larry');
equals(result.join(''), 'moe', 'works an an arguments object');
equals(result.join(''), 'moe', 'works on an arguments object');
});

test('arrays: zip', function() {
Expand Down

0 comments on commit 83c7a00

Please sign in to comment.