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
path: root/test
diff options
context:
space:
mode:
authorDaniel Abrão <danielpaladar@gmail.com>2017-10-06 20:01:25 +0300
committerMyles Borins <mylesborins@google.com>2017-10-24 00:18:15 +0300
commite11c8fbc9f5e386f782fea21f50efd8bb2784534 (patch)
treefe88ad423ce94ac25437f0298812f5d2d96d349e /test
parent62f802aee0f14295683d0996dc1401ca43431f5b (diff)
test: remove error msg in test-vm-symbols.js
PR-URL: https://github.com/nodejs/node/pull/15873 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-vm-symbols.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/parallel/test-vm-symbols.js b/test/parallel/test-vm-symbols.js
index 0867c7253dc..e5a4e9e756d 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');