summaryrefslogtreecommitdiff
path: root/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.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/Date/prototype/constructor/S15.9.5.1_A2_T1.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/Date/prototype/constructor/S15.9.5.1_A2_T1.js')
-rw-r--r--test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js
index 49cd15ab2..e7fe30436 100644
--- a/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js
+++ b/test/built-ins/Date/prototype/constructor/S15.9.5.1_A2_T1.js
@@ -8,10 +8,10 @@ es5id: 15.9.5.1_A2_T1
description: The "length" property of the "constructor" is 7
---*/
-if (Date.prototype.constructor.hasOwnProperty("length") !== true) {
+if(Date.prototype.constructor.hasOwnProperty("length") !== true){
$ERROR('#1: The constructor has a "length" property');
}
-if (Date.prototype.constructor.length !== 7) {
+if(Date.prototype.constructor.length !== 7){
$ERROR('#2: The "length" property of the constructor is 7');
}