summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.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/Boolean/prototype/toString/S15.6.4.2_A2_T3.js
parent7b01f9799f99851955f23c18c12e6651c1941022 (diff)
downloadqtdeclarative-testsuites-a01de4a722d088055a7d84d8c691ddd7109edb34.tar.gz
js-beautify: make all indentation consistent (depth & character) (#1409)
Diffstat (limited to 'test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.js')
-rw-r--r--test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.js b/test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.js
index c13b361d1..f3df79be2 100644
--- a/test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.js
+++ b/test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.js
@@ -12,27 +12,27 @@ description: transferring to the Date objects
---*/
//CHECK#1
-try{
+try {
var s1 = new Date();
s1.toString = Boolean.prototype.toString;
var v1 = s1.toString();
$ERROR('#1: Boolean.prototype.toString on not a Boolean object should throw TypeError');
}
-catch(e){
- if(!(e instanceof TypeError)){
- $ERROR('#1: Boolean.prototype.toString on not a Boolean object should throw TypeError, not '+e);
+catch (e) {
+ if (!(e instanceof TypeError)) {
+ $ERROR('#1: Boolean.prototype.toString on not a Boolean object should throw TypeError, not ' + e);
}
}
//CHECK#1
-try{
+try {
var s2 = new Date();
s2.myToString = Boolean.prototype.toString;
var v2 = s2.myToString();
$ERROR('#2: Boolean.prototype.toString on not a Boolean object should throw TypeError');
}
-catch(e){
- if(!(e instanceof TypeError)){
- $ERROR('#2: Boolean.prototype.toString on not a Boolean object should throw TypeError, not '+e);
+catch (e) {
+ if (!(e instanceof TypeError)) {
+ $ERROR('#2: Boolean.prototype.toString on not a Boolean object should throw TypeError, not ' + e);
}
}