From 4966e7916b133b02ba96156c39ec9a09f3b3b703 Mon Sep 17 00:00:00 2001 From: Kevin Gibbons Date: Thu, 28 Dec 2023 16:17:39 -0800 Subject: [PATCH] fix missing paren --- test/built-ins/TypedArray/prototype/sort/sorted-values.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/built-ins/TypedArray/prototype/sort/sorted-values.js b/test/built-ins/TypedArray/prototype/sort/sorted-values.js index 5b8c0bc13ce..acc7fc88018 100644 --- a/test/built-ins/TypedArray/prototype/sort/sorted-values.js +++ b/test/built-ins/TypedArray/prototype/sort/sorted-values.js @@ -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;