From a01de4a722d088055a7d84d8c691ddd7109edb34 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Fri, 9 Feb 2018 11:35:37 -0500 Subject: js-beautify: make all indentation consistent (depth & character) (#1409) --- test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js') diff --git a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js index 0248330b0..32c140ce9 100644 --- a/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js +++ b/test/built-ins/Date/prototype/toDateString/S15.9.5.3_A2_T1.js @@ -8,10 +8,10 @@ es5id: 15.9.5.3_A2_T1 description: The "length" property of the "toDateString" is 0 ---*/ -if(Date.prototype.toDateString.hasOwnProperty("length") !== true){ +if (Date.prototype.toDateString.hasOwnProperty("length") !== true) { $ERROR('#1: The toDateString has a "length" property'); } -if(Date.prototype.toDateString.length !== 0){ +if (Date.prototype.toDateString.length !== 0) { $ERROR('#2: The "length" property of the toDateString is 0'); } -- cgit v1.2.1