summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js
index ac798300c..b049d45ce 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A6_T5.js
@@ -11,11 +11,11 @@ description: >
function declaration used
---*/
-function FACTORY() {
- Function("a1,a2,a3", "this.shifted=a1.length+a2+a3;").call(null, arguments, "", 2);
+function FACTORY(){
+ Function("a1,a2,a3","this.shifted=a1.length+a2+a3;").call(null,arguments,"",2);
}
-var obj = new FACTORY("", 1, 2, "A");
+var obj=new FACTORY("",1,2,"A");
//CHECK#1
if (this["shifted"] !== "42") {