summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/isArray/15.4.3.2-2-1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/isArray/15.4.3.2-2-1.js')
-rw-r--r--test/built-ins/Array/isArray/15.4.3.2-2-1.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Array/isArray/15.4.3.2-2-1.js b/test/built-ins/Array/isArray/15.4.3.2-2-1.js
index d0a5ed7fc..302f9cbe8 100644
--- a/test/built-ins/Array/isArray/15.4.3.2-2-1.js
+++ b/test/built-ins/Array/isArray/15.4.3.2-2-1.js
@@ -8,7 +8,7 @@ description: Array.isArray applied to an object with an array as the prototype
---*/
var proto = [];
-var Con = function() {};
+var Con = function () { };
Con.prototype = proto;
var child = new Con();