From a6e8cd7bcb574f3833d32c2d53e04a50a4c32ade Mon Sep 17 00:00:00 2001 From: Arthur Ozga Date: Thu, 8 Jun 2017 19:22:23 -0700 Subject: [PATCH] rename tests --- tests/cases/fourslash/unusedImports2FS.ts | 2 +- ...ForLoop5FS.ts => unusedVariableInForLoop5FSAddUnderscore.ts} | 0 tests/cases/fourslash/unusedVariableInForLoop7FS.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/cases/fourslash/{unusedVariableInForLoop5FS.ts => unusedVariableInForLoop5FSAddUnderscore.ts} (100%) diff --git a/tests/cases/fourslash/unusedImports2FS.ts b/tests/cases/fourslash/unusedImports2FS.ts index ec3f2056e36..8865dea56a6 100644 --- a/tests/cases/fourslash/unusedImports2FS.ts +++ b/tests/cases/fourslash/unusedImports2FS.ts @@ -16,4 +16,4 @@ //// //// } -verify.rangeAfterCodeFix(`import {Calculator} from "./file1"`, /*includeWhiteSpace*/ true, /*errorCode*/ 0); +verify.rangeAfterCodeFix(`import {Calculator} from "./file1"`, /*includeWhiteSpace*/ true, /*errorCode*/ undefined); diff --git a/tests/cases/fourslash/unusedVariableInForLoop5FS.ts b/tests/cases/fourslash/unusedVariableInForLoop5FSAddUnderscore.ts similarity index 100% rename from tests/cases/fourslash/unusedVariableInForLoop5FS.ts rename to tests/cases/fourslash/unusedVariableInForLoop5FSAddUnderscore.ts diff --git a/tests/cases/fourslash/unusedVariableInForLoop7FS.ts b/tests/cases/fourslash/unusedVariableInForLoop7FS.ts index 95dee56acf9..7f99863ba46 100644 --- a/tests/cases/fourslash/unusedVariableInForLoop7FS.ts +++ b/tests/cases/fourslash/unusedVariableInForLoop7FS.ts @@ -13,4 +13,4 @@ verify.rangeAfterCodeFix(`{ for (const elem of ["a", "b", "c"]) { elem; } -}`); +}`, /*includeWhiteSpace*/ true);