Skip to content

Commit e11c8fb

Browse files
jungleBadgerMylesBorins
authored andcommitted
test: remove error msg in test-vm-symbols.js
PR-URL: #15873 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 62f802a commit e11c8fb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/parallel/test-vm-symbols.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ Document.prototype.getSymbolValue = function() {
1818
const context = new Document();
1919
vm.createContext(context);
2020

21-
assert.strictEqual(context.getSymbolValue(), 'foo',
22-
'should return symbol-keyed value from the outside');
21+
assert.strictEqual(context.getSymbolValue(), 'foo');
2322

24-
assert.strictEqual(vm.runInContext('this.getSymbolValue()', context), 'foo',
25-
'should return symbol-keyed value from the inside');
23+
assert.strictEqual(vm.runInContext('this.getSymbolValue()', context), 'foo');

0 commit comments

Comments
 (0)