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