summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/map/15.4.4.19-5-22.js')
-rw-r--r--test/built-ins/Array/prototype/map/15.4.4.19-5-22.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js b/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js
index 1386aa749..9ef42b64e 100644
--- a/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js
+++ b/test/built-ins/Array/prototype/map/15.4.4.19-5-22.js
@@ -7,10 +7,10 @@ es5id: 15.4.4.19-5-22
description: Array.prototype.map - boolean primitive can be used as thisArg
---*/
-function callbackfn(val, idx, obj) {
- return this.valueOf() === false;
-}
+ function callbackfn(val, idx, obj) {
+ return this.valueOf() === false;
+ }
-var testResult = [11].map(callbackfn, false);
+ var testResult = [11].map(callbackfn, false);
assert.sameValue(testResult[0], true, 'testResult[0]');