Skip to content

Commit b24cd68

Browse files
dubzzzaduh95
andcommitted
Update test/parallel/test-vm-global-symbol.js
Co-authored-by: Antoine du Hamel <[email protected]>
1 parent 020bc92 commit b24cd68

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)