Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/common/index.js')
-rw-r--r--test/common/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/index.js b/test/common/index.js
index 0952f5de52f..39caa1b6b68 100644
--- a/test/common/index.js
+++ b/test/common/index.js
@@ -276,8 +276,8 @@ if (global.gc) {
knownGlobals.push(global.gc);
}
-function allowGlobals(...whitelist) {
- knownGlobals = knownGlobals.concat(whitelist);
+function allowGlobals(...allowlist) {
+ knownGlobals = knownGlobals.concat(allowlist);
}
if (process.env.NODE_TEST_KNOWN_GLOBALS !== '0') {