summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/fill/fill-values.js
diff options
context:
space:
mode:
authorLeo Balter <leonardo.balter@gmail.com>2018-02-15 17:51:52 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 17:51:52 -0500
commit857f1d429b939c6feef1951041b5c91c9f3a8b4a (patch)
treeb2c16184e39a20fd66f11f2fc517e8e592d6536e /test/built-ins/TypedArray/prototype/fill/fill-values.js
parent77096157d10fcb6d72696456c5a9302ab29ba62a (diff)
downloadqtdeclarative-testsuites-857f1d429b939c6feef1951041b5c91c9f3a8b4a.tar.gz
fix bad fixings from Remove N
Diffstat (limited to 'test/built-ins/TypedArray/prototype/fill/fill-values.js')
-rw-r--r--test/built-ins/TypedArray/prototype/fill/fill-values.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/TypedArray/prototype/fill/fill-values.js b/test/built-ins/TypedArray/prototype/fill/fill-values.js
index cf632e77b..7d0faa44f 100644
--- a/test/built-ins/TypedArray/prototype/fill/fill-values.js
+++ b/test/built-ins/TypedArray/prototype/fill/fill-values.js
@@ -38,7 +38,7 @@ testWithTypedArrayConstructors(function(TA) {
);
assert(
- compareArray(new TA([0, 0, 0])).fill(8), [8, 8, 8],
+ compareArray(new TA([0, 0, 0]).fill(8), [8, 8, 8]),
"Default start and end indexes are 0 and this.length"
);
});