diff --git a/test/parallel/test-vm-symbols.js b/test/parallel/test-vm-symbols.js index 0867c7253dcec4..e5a4e9e756d173 100644 --- a/test/parallel/test-vm-symbols.js +++ b/test/parallel/test-vm-symbols.js @@ -18,8 +18,6 @@ Document.prototype.getSymbolValue = function() { const context = new Document(); vm.createContext(context); -assert.strictEqual(context.getSymbolValue(), 'foo', - 'should return symbol-keyed value from the outside'); +assert.strictEqual(context.getSymbolValue(), 'foo'); -assert.strictEqual(vm.runInContext('this.getSymbolValue()', context), 'foo', - 'should return symbol-keyed value from the inside'); +assert.strictEqual(vm.runInContext('this.getSymbolValue()', context), 'foo');