diff options
Diffstat (limited to 'test/built-ins/Number/S15.7.3_A4.js')
-rw-r--r-- | test/built-ins/Number/S15.7.3_A4.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/built-ins/Number/S15.7.3_A4.js b/test/built-ins/Number/S15.7.3_A4.js index 9b1bff195..7c9dadce0 100644 --- a/test/built-ins/Number/S15.7.3_A4.js +++ b/test/built-ins/Number/S15.7.3_A4.js @@ -7,6 +7,6 @@ es5id: 15.7.3_A4 description: Checking existence of the property "NaN" ---*/ -if (!Number.hasOwnProperty("NaN")) { +if(!Number.hasOwnProperty("NaN")){ $ERROR('#1: The Number constructor has the property "NaN"'); } |