From f95b56ab28c5f18150f30fbfa889a4f6ba0e50a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Fri, 9 Feb 2018 09:09:47 -0800 Subject: Revert "js-beautify: make all indentation consistent (depth & character) (#1409)" (#1412) This reverts commit a01de4a722d088055a7d84d8c691ddd7109edb34. --- test/built-ins/Object/keys/15.2.3.14-5-13.js | 36 ++++++++++++++-------------- 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'test/built-ins/Object/keys/15.2.3.14-5-13.js') diff --git a/test/built-ins/Object/keys/15.2.3.14-5-13.js b/test/built-ins/Object/keys/15.2.3.14-5-13.js index 4c87e4d47..1dd461cab 100644 --- a/test/built-ins/Object/keys/15.2.3.14-5-13.js +++ b/test/built-ins/Object/keys/15.2.3.14-5-13.js @@ -8,28 +8,28 @@ description: > 'O' is defined in returned array ---*/ -var obj = [1, , 3, , 5]; + var obj = [1, , 3, , 5]; -Object.defineProperty(obj, 5, { - value: 7, - enumerable: false, - configurable: true -}); + Object.defineProperty(obj, 5, { + value: 7, + enumerable: false, + configurable: true + }); -Object.defineProperty(obj, 10000, { - value: "ElementWithLargeIndex", - enumerable: true, - configurable: true -}); + Object.defineProperty(obj, 10000, { + value: "ElementWithLargeIndex", + enumerable: true, + configurable: true + }); -var arr = Object.keys(obj); + var arr = Object.keys(obj); -var index; -var initValue = 0; -for (index = 0; index < 3; index++) { - assert.sameValue(arr[index], initValue.toString(), 'Unexpected property at index: ' + index); - initValue += 2; -} + var index; + var initValue = 0; + for (index = 0; index < 3; index++) { + assert.sameValue(arr[index], initValue.toString(), 'Unexpected property at index: ' + index); + initValue += 2; + } assert.sameValue(arr.length, 4, 'arr.length'); assert.sameValue(arr[3], "10000", 'arr[3]'); -- cgit v1.2.1