summaryrefslogtreecommitdiff
path: root/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js')
-rw-r--r--test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js
index 3596de93b..6e2af85b2 100644
--- a/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js
+++ b/test/built-ins/Boolean/prototype/valueOf/S15.6.4.3_A2_T2.js
@@ -12,27 +12,27 @@ description: transferring to the Number objects
---*/
//CHECK#1
-try{
+try {
var s1 = new Number();
s1.valueOf = Boolean.prototype.valueOf;
var v1 = s1.valueOf();
$ERROR('#1: Boolean.prototype.valueOf on not a Boolean object should throw TypeError');
}
-catch(e){
- if(!(e instanceof TypeError)){
- $ERROR('#1: Boolean.prototype.valueOf on not a Boolean object should throw TypeError, not '+e);
+catch (e) {
+ if (!(e instanceof TypeError)) {
+ $ERROR('#1: Boolean.prototype.valueOf on not a Boolean object should throw TypeError, not ' + e);
}
}
//CHECK#1
-try{
+try {
var s2 = new Number();
s2.myValueOf = Boolean.prototype.valueOf;
var v2 = s2.myValueOf();
$ERROR('#2: Boolean.prototype.valueOf on not a Boolean object should throw TypeError');
}
-catch(e){
- if(!(e instanceof TypeError)){
- $ERROR('#2: Boolean.prototype.valueOf on not a Boolean object should throw TypeError, not '+e);
+catch (e) {
+ if (!(e instanceof TypeError)) {
+ $ERROR('#2: Boolean.prototype.valueOf on not a Boolean object should throw TypeError, not ' + e);
}
}