From e070e592dd0848a27d710ce098ca2510caa4cfb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Abra=CC=83o?= Date: Fri, 6 Oct 2017 14:01:25 -0300 Subject: [PATCH] test: remove error msg in test-vm-symbols.js PR-URL: https://github.com/nodejs/node/pull/15873 Reviewed-By: Ruben Bridgewater --- test/parallel/test-vm-symbols.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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');