mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
Remove _.unzip use from underscore build tests.
Former-commit-id: ea76623efddc58550f67ee3b40ba93d1b7b8770e
This commit is contained in:
@@ -1080,7 +1080,7 @@
|
||||
strictEqual(lodash.findWhere(collection, {}), undefined, '_.findWhere should return `undefined` for falsey `properties`: ' + basename);
|
||||
|
||||
var expected = [[['moe', 30, true]], [['larry', 40, false]]];
|
||||
actual = lodash.unzip(lodash.zip(['moe', 'larry'], [30, 40], [true, false]));
|
||||
actual = lodash.zip(lodash.zip(['moe', 'larry'], [30, 40], [true, false]));
|
||||
deepEqual(actual, expected, '_.zip is unable to correctly consume it\'s output: ' + basename);
|
||||
|
||||
start();
|
||||
|
||||
Reference in New Issue
Block a user