Skip to content

Commit

Permalink
fix missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot authored and Ms2ger committed Jan 10, 2024
1 parent 0964566 commit e5d20a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/built-ins/TypedArray/prototype/sort/sorted-values.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ testWithTypedArrayConstructors(function(TA) {
testWithTypedArrayConstructors(function(TA) {
var sample = new TA([-4, 3, 4, -3, 2, -2, 1, 0]).sort();
assert(compareArray(sample, [-4, -3, -2, 0, 1, 2, 3, 4]), "negative values");
}, floatArrayConstructors.concat([Int8Array, Int16Array, Int32Array]);
}, floatArrayConstructors.concat([Int8Array, Int16Array, Int32Array]));

testWithTypedArrayConstructors(function(TA) {
var sample;
Expand Down

0 comments on commit e5d20a7

Please sign in to comment.