Skip to content

Commit 43b38cb

Browse files
committed
fix Symbol descriptors test
1 parent da2bd56 commit 43b38cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/unit-global/es.symbol.constructor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if (DESCRIPTORS) {
8888
defineProperty(prototype, 'h', {
8989
value: 'h',
9090
});
91-
defineProperty(prototype, 'j', {
91+
defineProperty(prototype, j, {
9292
value: 'j',
9393
});
9494
const object = create(prototype);

tests/unit-pure/es.symbol.constructor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ if (DESCRIPTORS) {
8181
defineProperty(prototype, 'h', {
8282
value: 'h',
8383
});
84-
defineProperty(prototype, 'j', {
84+
defineProperty(prototype, j, {
8585
value: 'j',
8686
});
8787
const object = create(prototype);

0 commit comments

Comments
 (0)