Skip to content

Commit 5d5ad4c

Browse files
committed
Merge branch 'fix-global-access-issue' of https://github.com/dubzzz/node into fix-global-access-issue
2 parents 020bc92 + dda9dc3 commit 5d5ad4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/parallel/test-vm-global-symbol.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Object.defineProperty(global, totoSymbol, {
1111
value: 4,
1212
configurable: true,
1313
});
14-
assert.ok(global[totoSymbol] === 4);
14+
assert.strictEqual(global[totoSymbol], 4);
1515
assert.ok(Object.getOwnPropertySymbols(global).includes(totoSymbol));

0 commit comments

Comments
 (0)