summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/copyWithin/negative-start.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-09 11:35:37 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 11:35:37 -0500
commita01de4a722d088055a7d84d8c691ddd7109edb34 (patch)
treef583c8efd40a3b699261f1166da75a9861d83e7b /test/built-ins/TypedArray/prototype/copyWithin/negative-start.js
parent7b01f9799f99851955f23c18c12e6651c1941022 (diff)
downloadqtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/TypedArray/prototype/copyWithin/negative-start.js')
-rw-r--r--test/built-ins/TypedArray/prototype/copyWithin/negative-start.js18
1 files changed, 6 insertions, 12 deletions
diff --git a/test/built-ins/TypedArray/prototype/copyWithin/negative-start.js b/test/built-ins/TypedArray/prototype/copyWithin/negative-start.js
index df73879d4..4552cab64 100644
--- a/test/built-ins/TypedArray/prototype/copyWithin/negative-start.js
+++ b/test/built-ins/TypedArray/prototype/copyWithin/negative-start.js
@@ -29,48 +29,42 @@ includes: [compareArray.js, testTypedArray.js]
testWithTypedArrayConstructors(function(TA) {
assert(
compareArray(
- new TA([0, 1, 2, 3]).copyWithin(0, -1),
- [3, 1, 2, 3]
+ new TA([0, 1, 2, 3]).copyWithin(0, -1), [3, 1, 2, 3]
),
'[0, 1, 2, 3].copyWithin(0, -1) -> [3, 1, 2, 3]'
);
assert(
compareArray(
- new TA([0, 1, 2, 3, 4]).copyWithin(2, -2),
- [0, 1, 3, 4, 4]
+ new TA([0, 1, 2, 3, 4]).copyWithin(2, -2), [0, 1, 3, 4, 4]
),
'[0, 1, 2, 3, 4].copyWithin(2, -2) -> [0, 1, 3, 4, 4]'
);
assert(
compareArray(
- new TA([0, 1, 2, 3, 4]).copyWithin(1, -2),
- [0, 3, 4, 3, 4]
+ new TA([0, 1, 2, 3, 4]).copyWithin(1, -2), [0, 3, 4, 3, 4]
),
'[0, 1, 2, 3, 4].copyWithin(1, -2) -> [0, 3, 4, 3, 4]'
);
assert(
compareArray(
- new TA([0, 1, 2, 3]).copyWithin(-1, -2),
- [0, 1, 2, 2]
+ new TA([0, 1, 2, 3]).copyWithin(-1, -2), [0, 1, 2, 2]
),
'[0, 1, 2, 3].copyWithin(-1, -2) -> [ 0, 1, 2, 2 ]'
);
assert(
compareArray(
- new TA([0, 1, 2, 3, 4]).copyWithin(-2, -3),
- [0, 1, 2, 2, 3]
+ new TA([0, 1, 2, 3, 4]).copyWithin(-2, -3), [0, 1, 2, 2, 3]
),
'[0, 1, 2, 3, 4].copyWithin(-2, -3) -> [0, 1, 2, 2, 3]'
);
assert(
compareArray(
- new TA([0, 1, 2, 3, 4]).copyWithin(-5, -2),
- [3, 4, 2, 3, 4]
+ new TA([0, 1, 2, 3, 4]).copyWithin(-5, -2), [3, 4, 2, 3, 4]
),
'[0, 1, 2, 3, 4].copyWithin(-5, -2) -> [3, 4, 2, 3, 4]'
);