summaryrefslogtreecommitdiff
path: root/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js')
-rw-r--r--test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js b/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js
index 311bc7780..4718751cb 100644
--- a/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js
+++ b/test/built-ins/Array/from/Array.from_forwards-length-for-array-likes.js
@@ -28,9 +28,7 @@ function MyCollection() {
this.args = arguments;
}
-result = Array.from.call(MyCollection, {
- length: 42
-});
+result = Array.from.call(MyCollection, {length: 42});
assert.sameValue(result.args.length, 1);
assert.sameValue(result.args[0], 42);