aboutsummaryrefslogtreecommitdiffstats
path: root/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js
diff options
context:
space:
mode:
authorRick Waldron <waldron.rick@gmail.com>2018-02-15 15:39:13 -0500
committerLeo Balter <leonardo.balter@gmail.com>2018-02-15 15:39:13 -0500
commit19ca734beaea75fc61e296f78450354ff0dff7e9 (patch)
tree151310b950d46e9843df6f98d21fcc89f8ceca9b /test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js
parentaf37c92af7691eaf4769eb1f5f44f92a4a883426 (diff)
built-ins/String/*: make all indentation consistent (depth & character) (#1430)
Diffstat (limited to 'test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js')
-rw-r--r--test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js
index 34289893b..9ee03545e 100644
--- a/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js
+++ b/test/built-ins/String/prototype/toLocaleUpperCase/S15.5.4.19_A10.js
@@ -15,19 +15,21 @@ includes: [propertyHelper.js]
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (!(String.prototype.toLocaleUpperCase.hasOwnProperty('length'))) {
- $ERROR('#1: String.prototype.toLocaleUpperCase.hasOwnProperty(\'length\') return true. Actual: '+String.prototype.toLocaleUpperCase.hasOwnProperty('length'));
+ $ERROR('#1: String.prototype.toLocaleUpperCase.hasOwnProperty(\'length\') return true. Actual: ' + String.prototype.toLocaleUpperCase.hasOwnProperty('length'));
}
//
//////////////////////////////////////////////////////////////////////////////
var __obj = String.prototype.toLocaleUpperCase.length;
-verifyNotWritable(String.prototype.toLocaleUpperCase, "length", null, function(){return "shifted";});
+verifyNotWritable(String.prototype.toLocaleUpperCase, "length", null, function() {
+ return "shifted";
+});
//////////////////////////////////////////////////////////////////////////////
//CHECK#2
if (String.prototype.toLocaleUpperCase.length !== __obj) {
- $ERROR('#2: __obj = String.prototype.toLocaleUpperCase.length; String.prototype.toLocaleUpperCase.length = function(){return "shifted";}; String.prototype.toLocaleUpperCase.length === __obj. Actual: '+String.prototype.toLocaleUpperCase.length );
+ $ERROR('#2: __obj = String.prototype.toLocaleUpperCase.length; String.prototype.toLocaleUpperCase.length = function(){return "shifted";}; String.prototype.toLocaleUpperCase.length === __obj. Actual: ' + String.prototype.toLocaleUpperCase.length);
}
//
//////////////////////////////////////////////////////////////////////////////