diff --git a/test/index.html b/test/index.html
index 00cadc606..26ad54d9f 100644
--- a/test/index.html
+++ b/test/index.html
@@ -282,9 +282,8 @@
underscoreModule = underscore.result(underscore, 'noConflict') || underscore;
underscoreModule.moduleName = 'underscore';
}
- if (ui.isModularize) {
- window._ = lodash;
- }
+ window._ = lodash;
+
if (ui.isModularize) {
require(getConfig(), [
'lodash/internal/baseEach',
diff --git a/test/underscore.html b/test/underscore.html
index 468fef3ec..c9d95f23e 100644
--- a/test/underscore.html
+++ b/test/underscore.html
@@ -455,10 +455,6 @@
require(getConfig(), [moduleId], function(lodash) {
mixinPrereqs(lodash);
-
- if (ui.isModularize) {
- window._ = lodash;
- }
require(getConfig(), [
'test/collections',
'test/arrays',