summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js')
-rw-r--r--test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js b/test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js
index 24bccec08..d213067fe 100644
--- a/test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js
+++ b/test/built-ins/Array/length/S15.4.5.1_A1.2_T1.js
@@ -13,7 +13,7 @@ description: Change length of array
---*/
//CHECK#1
-var x = [0, , 2, , 4];
+var x = [0,,2,,4];
x.length = 4;
if (x[4] !== undefined) {
$ERROR('#1: x = [0,,2,,4]; x.length = 4; x[4] === undefined. Actual: ' + (x[4]));