summaryrefslogtreecommitdiff
path: root/test/built-ins/TypedArray/prototype/sort/return-same-instance.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/TypedArray/prototype/sort/return-same-instance.js')
-rw-r--r--test/built-ins/TypedArray/prototype/sort/return-same-instance.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/built-ins/TypedArray/prototype/sort/return-same-instance.js b/test/built-ins/TypedArray/prototype/sort/return-same-instance.js
index 23a4312d7..f95885080 100644
--- a/test/built-ins/TypedArray/prototype/sort/return-same-instance.js
+++ b/test/built-ins/TypedArray/prototype/sort/return-same-instance.js
@@ -20,8 +20,6 @@ testWithTypedArrayConstructors(function(TA) {
assert.sameValue(sample, result, "without comparefn");
- result = sample.sort(function() {
- return 0;
- });
+ result = sample.sort(function() { return 0; });
assert.sameValue(sample, result, "with comparefn");
});