summaryrefslogtreecommitdiff
path: root/test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js
diff options
context:
space:
mode:
authorAndré Bargull <andre.bargull@gmail.com>2018-02-09 09:09:47 -0800
committerLeo Balter <leonardo.balter@gmail.com>2018-02-09 12:09:47 -0500
commitf95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 (patch)
treed403f704c1b6a1842f12df380651919beaaf5fef /test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js
parenta01de4a722d088055a7d84d8c691ddd7109edb34 (diff)
downloadqtdeclarative-testsuites-f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1.tar.gz
Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412)
This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34.
Diffstat (limited to 'test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js')
-rw-r--r--test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js b/test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js
index 1efb22b12..81ca29036 100644
--- a/test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js
+++ b/test/built-ins/String/prototype/normalize/return-normalized-string-from-coerced-form.js
@@ -23,18 +23,14 @@ var s = '\u00C5\u2ADC\u0958\u2126\u0344';
var nfc = '\xC5\u2ADD\u0338\u0915\u093C\u03A9\u0308\u0301';
var nfd = 'A\u030A\u2ADD\u0338\u0915\u093C\u03A9\u0308\u0301';
var o = {
- toString: function() {
- return 'NFC';
- }
+ toString: function() { return 'NFC'; }
};
assert.sameValue(s.normalize(['NFC']), nfc, 'coerced array - NFC');
assert.sameValue(s.normalize(o), nfc, 'coerced object - NFC');
o = {
- toString: function() {
- return 'NFD';
- }
+ toString: function() { return 'NFD'; }
};
assert.sameValue(s.normalize(['NFD']), nfd, 'coerced array - NFD');