summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/prototype/toString/S15.6.4.2_A2_T3.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/Boolean/prototype/toString/S15.6.4.2_A2_T3.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/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 f3df79be2..c13b361d1 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);
}
}