From 82a1010f64b7690f68051b3fe17fef79bb70d811 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Fri, 11 Dec 2015 01:29:14 -0800 Subject: [PATCH] Fix fp test fail when run from Node. --- test/test-fp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-fp.js b/test/test-fp.js index 6ee269cf4..fb5f1bfe2 100644 --- a/test/test-fp.js +++ b/test/test-fp.js @@ -43,7 +43,7 @@ QUnitExtras.runInContext(root); } - var convert = root.fp || load('../dist/lodash.fp.js'), + var convert = root.fp || load('../lib/fp/fp.js'), mapping = root.mapping || load('../lib/fp/mapping.js'), fp = convert(_.runInContext());