summaryrefslogtreecommitdiff
path: root/test/parallel/test-require-symlink.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-require-symlink.js')
-rw-r--r--test/parallel/test-require-symlink.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parallel/test-require-symlink.js b/test/parallel/test-require-symlink.js
index c73fdcd41e..5c9b0fbdef 100644
--- a/test/parallel/test-require-symlink.js
+++ b/test/parallel/test-require-symlink.js
@@ -63,12 +63,12 @@ function test() {
fs.symlinkSync(linkTarget, linkDir, 'dir');
fs.symlinkSync(linkScriptTarget, linkScript);
- // load symlinked-module
+ // Load symlinked-module
const fooModule = require(path.join(tmpDirTarget, 'foo.js'));
assert.strictEqual(fooModule.dep1.bar.version, 'CORRECT_VERSION');
assert.strictEqual(fooModule.dep2.bar.version, 'CORRECT_VERSION');
- // load symlinked-script as main
+ // Load symlinked-script as main
const node = process.execPath;
const child = spawn(node, ['--preserve-symlinks', linkScript]);
child.on('close', function(code, signal) {