summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/prototype/map/15.4.4.19-2-2.js')
-rw-r--r--test/built-ins/Array/prototype/map/15.4.4.19-2-2.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js b/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js
index 46aa6c4fb..028b0c6e0 100644
--- a/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js
+++ b/test/built-ins/Array/prototype/map/15.4.4.19-2-2.js
@@ -9,10 +9,10 @@ description: >
Array
---*/
-function callbackfn(val, idx, obj) {
- return val > 10;
-}
+ function callbackfn(val, idx, obj) {
+ return val > 10;
+ }
-var testResult = [12, 11].map(callbackfn);
+ var testResult = [12, 11].map(callbackfn);
assert.sameValue(testResult.length, 2, 'testResult.length');