mirror of https://github.com/tc39/test262.git
Fix typo in BigIntArray property descriptor test
This commit is contained in:
parent
b2e9dff281
commit
9ca13b1272
test/built-ins/TypedArrayConstructors/internals/GetOwnProperty/BigInt
|
@ -29,7 +29,7 @@ testWithBigIntTypedArrayConstructors(function(TA) {
|
|||
assert.sameValue(descriptor0.enumerable, true);
|
||||
assert.sameValue(descriptor0.writable, true);
|
||||
|
||||
assert.sameValue(descriptor1.value, 42n);
|
||||
assert.sameValue(descriptor1.value, 43n);
|
||||
assert.sameValue(descriptor1.configurable, true);
|
||||
assert.sameValue(descriptor1.enumerable, true);
|
||||
assert.sameValue(descriptor1.writable, true);
|
||||
|
|
Loading…
Reference in New Issue