Skip to content

Commit

Permalink
test: remove error msg in test-vm-symbols.js
Browse files Browse the repository at this point in the history
PR-URL: #15873
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
jungleBadger authored and MylesBorins committed Nov 28, 2017
1 parent b48471a commit e070e59
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 e070e59

Please sign in to comment.