summaryrefslogtreecommitdiff
path: root/test/built-ins/Object/S15.2.2.1_A6_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Object/S15.2.2.1_A6_T3.js')
-rw-r--r--test/built-ins/Object/S15.2.2.1_A6_T3.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Object/S15.2.2.1_A6_T3.js b/test/built-ins/Object/S15.2.2.1_A6_T3.js
index cee0898ba..b7e307151 100644
--- a/test/built-ins/Object/S15.2.2.1_A6_T3.js
+++ b/test/built-ins/Object/S15.2.2.1_A6_T3.js
@@ -9,7 +9,7 @@ es5id: 15.2.2.1_A6_T3
description: Creating an object with "new Object((null,2,3),2,3)"
---*/
-var obj = new Object((null, 2, 3), 1, 2);
+var obj = new Object((null,2,3),1,2);
//CHECK#1
if (obj.constructor !== Number) {
@@ -22,6 +22,6 @@ if (typeof obj !== "object") {
}
//CHECK#3
-if ((obj != 3) || (obj === 3)) {
+if ((obj != 3)||(obj === 3)) {
$ERROR('3#: Since Object as a function calling is the same as function calling list of arguments can appears in braces;');
}