Skip to content

Commit

Permalink
Merge branch 'fix-global-access-issue' of https://github.com/dubzzz/node
Browse files Browse the repository at this point in the history
 into fix-global-access-issue
  • Loading branch information
dubzzz committed Feb 1, 2023
2 parents 020bc92 + dda9dc3 commit 5d5ad4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parallel/test-vm-global-symbol.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ Object.defineProperty(global, totoSymbol, {
value: 4,
configurable: true,
});
assert.ok(global[totoSymbol] === 4);
assert.strictEqual(global[totoSymbol], 4);
assert.ok(Object.getOwnPropertySymbols(global).includes(totoSymbol));

0 comments on commit 5d5ad4c

Please sign in to comment.