From 37d4116ae0e69f31425cbd560e0fdf2ad61d10b6 Mon Sep 17 00:00:00 2001 From: Arthur Ozga Date: Mon, 19 Jun 2017 14:22:56 -0700 Subject: [PATCH] rename test --- ...tOnEnterEmptyBlock.ts => formatIfWithEmptyCondition.ts} | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) rename tests/cases/fourslash/{formatOnEnterEmptyBlock.ts => formatIfWithEmptyCondition.ts} (74%) diff --git a/tests/cases/fourslash/formatOnEnterEmptyBlock.ts b/tests/cases/fourslash/formatIfWithEmptyCondition.ts similarity index 74% rename from tests/cases/fourslash/formatOnEnterEmptyBlock.ts rename to tests/cases/fourslash/formatIfWithEmptyCondition.ts index fd24edf4e5f..6e949900e22 100644 --- a/tests/cases/fourslash/formatOnEnterEmptyBlock.ts +++ b/tests/cases/fourslash/formatIfWithEmptyCondition.ts @@ -1,16 +1,11 @@ /// -//// if (true) { -//// } //// if () { //// } format.setOption("PlaceOpenBraceOnNewLineForControlBlocks", true); format.document(); verify.currentFileContentIs( -`if (true) -{ -} -if () +`if () { }`);