summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js
index b4d2167fd..d71867222 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A5_T3.js
@@ -10,12 +10,9 @@ description: thisArg is string
flags: [noStrict]
---*/
-var obj = "soap";
+var obj="soap";
-var retobj = (function() {
- this.touched = true;
- return this;
-}).call(obj);
+var retobj = ( function(){this.touched= true; return this;} ).call(obj);
//CHECK#1
if (typeof obj.touched !== "undefined") {