From 059fbb9e5d60a5ca5d009508b3b169c6b4ca38be Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 14 Jul 2013 09:14:55 -0700 Subject: [PATCH] Remove `_.unzip` use from `underscore` build tests. Former-commit-id: ea76623efddc58550f67ee3b40ba93d1b7b8770e --- test/test-build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-build.js b/test/test-build.js index 7977b005e..8ef43381a 100644 --- a/test/test-build.js +++ b/test/test-build.js @@ -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();