summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js
index 5620f4077..989080fa0 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T2.js
@@ -9,7 +9,7 @@ es5id: 15.3.4.4_A6_T2
description: Argunemts of call function is (null,[3,2,1])
---*/
-new Function("a1,a2", "a3", "this.shifted=a1;").call(null, [3, 2, 1]);
+new Function("a1,a2","a3","this.shifted=a1;").call(null,[3,2,1]);
//CHECK#1
if (this["shifted"].length !== 3) {
@@ -17,6 +17,6 @@ if (this["shifted"].length !== 3) {
}
//CHECK#2
-if ((this["shifted"][0] !== 3) || (this["shifted"][1] !== 2) || (this["shifted"][2] !== 1)) {
+if ((this["shifted"][0] !== 3)||(this["shifted"][1] !== 2)||(this["shifted"][2] !== 1)) {
$ERROR('#2: The call method takes one or more arguments, thisArg and (optionally) arg1, arg2 etc, and performs a function call using the [[Call]] property of the object');
}