summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-global-property-interceptors.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/parallel/test-vm-global-property-interceptors.js')
-rw-r--r--test/parallel/test-vm-global-property-interceptors.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parallel/test-vm-global-property-interceptors.js b/test/parallel/test-vm-global-property-interceptors.js
index 8fe5f8f3da..23c56018b6 100644
--- a/test/parallel/test-vm-global-property-interceptors.js
+++ b/test/parallel/test-vm-global-property-interceptors.js
@@ -117,7 +117,7 @@ Object.defineProperty(this, 'encodeURI', { value: 42 });
assert.strictEqual(vm.runInContext('encodeURI;', ctx), 42);
assert.strictEqual(ctx.encodeURI, 42);
-// redefine properties on the sandbox
+// Redefine properties on the sandbox
vm.runInContext(`
Object.defineProperty(this, 'e', { value: 'newE' });
`, ctx);