Skip to content
This repository has been archived by the owner on Aug 31, 2018. It is now read-only.

Commit

Permalink
test: remove error msg in test-vm-symbols.js
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#15873
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
jungleBadger authored and addaleax committed Dec 7, 2017
1 parent e16cde4 commit 56ddd35
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions test/parallel/test-vm-symbols.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');

0 comments on commit 56ddd35

Please sign in to comment.