From 32f5db3f727dbe8428c92bacd07daeeefef3d576 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 19 May 2016 10:19:11 -0700 Subject: [PATCH] Fix failing `_.delay` test. --- test/test.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/test/test.js b/test/test.js index 899a1ecaf..e0354906f 100644 --- a/test/test.js +++ b/test/test.js @@ -312,10 +312,7 @@ lodashStable = lodashStable.runInContext(root); /** The `lodash` function to test. */ - var _ = root._ || (root._ = ( - _ = interopRequire(filePath), - (_.runInContext ? _.runInContext(root) : _) - )); + var _ = root._ || (root._ = interopRequire(filePath)); /** Used to test pseudo private map caches. */ var mapCaches = (function() {