Skip to content

Commit

Permalink
Update test/parallel/test-vm-global-symbol.js
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
  • Loading branch information
dubzzz and aduh95 committed Feb 1, 2023
1 parent 020bc92 commit b24cd68
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 b24cd68

Please sign in to comment.