summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/15.4.5.1-5-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/15.4.5.1-5-2.js')
-rw-r--r--test/built-ins/Array/15.4.5.1-5-2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Array/15.4.5.1-5-2.js b/test/built-ins/Array/15.4.5.1-5-2.js
index 924c48f47..27abd4c55 100644
--- a/test/built-ins/Array/15.4.5.1-5-2.js
+++ b/test/built-ins/Array/15.4.5.1-5-2.js
@@ -8,7 +8,7 @@ description: >
length of the array
---*/
- var a =[0,1,2];
- a[4294967295] = "not an array element" ;
+var a = [0, 1, 2];
+a[4294967295] = "not an array element";
assert.sameValue(a.length, 3, 'a.length');