mirror of https://github.com/tc39/test262.git
Remove unused parameter for testWithBigIntTypedArrayConstructors
+whitespace
This commit is contained in:
parent
0b54908dba
commit
7add5252e5
|
@ -18,4 +18,4 @@ testWithBigIntTypedArrayConstructors(function(TA) {
|
||||||
var sample = new TA(buffer, 0, 1);
|
var sample = new TA(buffer, 0, 1);
|
||||||
$DETACHBUFFER(sample.buffer);
|
$DETACHBUFFER(sample.buffer);
|
||||||
assert.sameValue(sample.buffer, buffer);
|
assert.sameValue(sample.buffer, buffer);
|
||||||
}, [BigInt64Array, BigUint64Array]);
|
});
|
||||||
|
|
|
@ -19,4 +19,4 @@ testWithBigIntTypedArrayConstructors(function(TA) {
|
||||||
var ta = new TA(buffer);
|
var ta = new TA(buffer);
|
||||||
|
|
||||||
assert.sameValue(ta.buffer, buffer);
|
assert.sameValue(ta.buffer, buffer);
|
||||||
}, [BigInt64Array, BigUint64Array]);
|
});
|
||||||
|
|
Loading…
Reference in New Issue