Remove unused parameter for testWithBigIntTypedArrayConstructors

+whitespace
This commit is contained in:
Leo Balter 2018-02-27 18:09:39 -05:00 committed by Rick Waldron
parent 0b54908dba
commit 7add5252e5
10 changed files with 17 additions and 17 deletions

View File

@ -18,4 +18,4 @@ testWithBigIntTypedArrayConstructors(function(TA) {
var sample = new TA(buffer, 0, 1);
$DETACHBUFFER(sample.buffer);
assert.sameValue(sample.buffer, buffer);
}, [BigInt64Array, BigUint64Array]);
});

View File

@ -19,4 +19,4 @@ testWithBigIntTypedArrayConstructors(function(TA) {
var ta = new TA(buffer);
assert.sameValue(ta.buffer, buffer);
}, [BigInt64Array, BigUint64Array]);
});