Update internal module references in tests.

This commit is contained in:
John-David Dalton
2016-02-19 10:39:38 -08:00
parent 8698a5e0e8
commit 8f8f8e288c
2 changed files with 6 additions and 6 deletions

View File

@@ -296,9 +296,9 @@
if (ui.isModularize) {
require(getConfig(), [
'lodash/internal/baseEach',
'lodash/internal/isIndex',
'lodash/internal/isIterateeCall'
'lodash/_baseEach',
'lodash/_isIndex',
'lodash/_isIterateeCall'
], function(baseEach, isIndex, isIterateeCall) {
lodash._baseEach = baseEach;
lodash._isIndex = isIndex;

View File

@@ -672,9 +672,9 @@
if (isModularize && !(amd || isNpm)) {
lodashStable.each([
'internal/baseEach',
'internal/isIndex',
'internal/isIterateeCall'
'_baseEach',
'_isIndex',
'_isIterateeCall'
], function(relPath) {
var func = require(path.join(basePath, relPath)),
funcName = path.basename(relPath);