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/Function/S15.3_A3_T5.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/built-ins/Function/S15.3_A3_T5.js') diff --git a/test/built-ins/Function/S15.3_A3_T5.js b/test/built-ins/Function/S15.3_A3_T5.js index 3129b520c..753410f5c 100644 --- a/test/built-ins/Function/S15.3_A3_T5.js +++ b/test/built-ins/Function/S15.3_A3_T5.js @@ -11,15 +11,15 @@ description: > Function return this.var_name ---*/ -var f=Function.call(this, "return this.planet;"); -var g=Function.call(this, "return this.color;"); +var f = Function.call(this, "return this.planet;"); +var g = Function.call(this, "return this.color;"); //CHECK#1 if (f() !== undefined) { $ERROR('#2: '); } -var planet="mars"; +var planet = "mars"; //CHECK#2 if (f() !== "mars") { @@ -29,9 +29,9 @@ if (f() !== "mars") { //CHECK#3 if (g() !== undefined) { $ERROR('#3: '); -} +} -this.color="red"; +this.color = "red"; //CHECK#4 if (g() !== "red") { -- cgit v1.2.1