summaryrefslogtreecommitdiff
path: root/test/built-ins/Function/prototype/call/S15.3.4.4_A10.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Function/prototype/call/S15.3.4.4_A10.js')
-rw-r--r--test/built-ins/Function/prototype/call/S15.3.4.4_A10.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/built-ins/Function/prototype/call/S15.3.4.4_A10.js b/test/built-ins/Function/prototype/call/S15.3.4.4_A10.js
index dd8819d49..bf2aa724c 100644
--- a/test/built-ins/Function/prototype/call/S15.3.4.4_A10.js
+++ b/test/built-ins/Function/prototype/call/S15.3.4.4_A10.js
@@ -17,7 +17,9 @@ if (!(Function.prototype.call.hasOwnProperty('length'))) {
var obj = Function.prototype.call.length;
-verifyNotWritable(Function.prototype.call, "length", null, function(){return "shifted";});
+verifyNotWritable(Function.prototype.call, "length", null, function() {
+ return "shifted";
+});
//CHECK#2
if (Function.prototype.call.length !== obj) {