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/Object/prototype/toString/S15.2.4.2_A1.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/built-ins/Object/prototype/toString/S15.2.4.2_A1.js') diff --git a/test/built-ins/Object/prototype/toString/S15.2.4.2_A1.js b/test/built-ins/Object/prototype/toString/S15.2.4.2_A1.js index d9aea6b89..6aee4b330 100644 --- a/test/built-ins/Object/prototype/toString/S15.2.4.2_A1.js +++ b/test/built-ins/Object/prototype/toString/S15.2.4.2_A1.js @@ -19,11 +19,11 @@ if (typeof Object.prototype.toString !== "function") { } //CHECK#2 -if (Object.prototype.toString() !=="[object "+"Object"+"]") { +if (Object.prototype.toString() !== "[object " + "Object" + "]") { $ERROR('#2: return a string value by concatenating the three strings "[object ", the [[Class]] property of this object, and "]"'); } //CHECK#3 -if ({}.toString()!=="[object "+"Object"+"]") { +if ({}.toString() !== "[object " + "Object" + "]") { $ERROR('#3: return a string value by concatenating the three strings "[object ", the [[Class]] property of this object, and "]"'); } -- cgit v1.2.1