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. --- .../Object/defineProperty/15.2.3.6-4-617.js | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'test/built-ins/Object/defineProperty/15.2.3.6-4-617.js') diff --git a/test/built-ins/Object/defineProperty/15.2.3.6-4-617.js b/test/built-ins/Object/defineProperty/15.2.3.6-4-617.js index 64509a0a0..7e41f46c4 100644 --- a/test/built-ins/Object/defineProperty/15.2.3.6-4-617.js +++ b/test/built-ins/Object/defineProperty/15.2.3.6-4-617.js @@ -6,27 +6,27 @@ es5id: 15.2.3.6-4-617 description: ES5 Attributes - all attributes in Array.prototype.map are correct ---*/ -var desc = Object.getOwnPropertyDescriptor(Array.prototype, "map"); + var desc = Object.getOwnPropertyDescriptor(Array.prototype, "map"); -var propertyAreCorrect = (desc.writable === true && desc.enumerable === false && desc.configurable === true); + var propertyAreCorrect = (desc.writable === true && desc.enumerable === false && desc.configurable === true); -var temp = Array.prototype.map; + var temp = Array.prototype.map; -Array.prototype.map = "2010"; + Array.prototype.map = "2010"; -var isWritable = (Array.prototype.map === "2010"); + var isWritable = (Array.prototype.map === "2010"); -var isEnumerable = false; + var isEnumerable = false; -for (var prop in Array.prototype) { - if (prop === "map") { - isEnumerable = true; - } -} + for (var prop in Array.prototype) { + if (prop === "map") { + isEnumerable = true; + } + } -delete Array.prototype.map; + delete Array.prototype.map; -var isConfigurable = !Array.prototype.hasOwnProperty("map"); + var isConfigurable = !Array.prototype.hasOwnProperty("map"); assert(propertyAreCorrect, 'propertyAreCorrect !== true'); assert(isWritable, 'isWritable !== true'); -- cgit v1.2.1