From b62f5b0dae77b9392cc806e3a41c191d6ec79e65 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Mon, 5 Jun 2017 17:09:40 -0700 Subject: [PATCH] Typos in test cases --- .../jsFileJsdocTypedefTagTypeExpressionCompletion.ts | 4 ++-- .../jsFileJsdocTypedefTagTypeExpressionCompletion2.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts b/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts index 62046458e4c..d6c3ca4f914 100644 --- a/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts +++ b/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts @@ -16,13 +16,13 @@ //// var x1; //// /*globalValue*/ -interface VeriferCompletionsInJsDoc { +interface VerifyCompletionsInJsDoc { verifyType(symbol: string, kind: string): void; verifyValue(symbol: string, kind: string): void; verifyTypeMember(symbol: string, kind: string): void; } -function verifyCompletionsInJsDocType(marker: string, { verifyType, verifyValue, verifyTypeMember }: VeriferCompletionsInJsDoc) { +function verifyCompletionsInJsDocType(marker: string, { verifyType, verifyValue, verifyTypeMember }: VerifyCompletionsInJsDoc) { goTo.marker(marker); verifyType("T", "module"); diff --git a/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion2.ts b/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion2.ts index b327fdf427b..038c5db5528 100644 --- a/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion2.ts +++ b/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion2.ts @@ -21,13 +21,13 @@ /////*globalValue*/ ////x./*valueMember*/ -interface VeriferCompletionsInJsDoc { +interface VerifyCompletionsInJsDoc { verifyValueOrType(symbol: string, kind: string): void; verifyValue(symbol: string, kind: string): void; verifyValueMember(symbol: string, kind: string): void; } -function verifyCompletionsInJsDocType(marker: string, { verifyValueOrType, verifyValue, verifyValueMember }: VeriferCompletionsInJsDoc) { +function verifyCompletionsInJsDocType(marker: string, { verifyValueOrType, verifyValue, verifyValueMember }: VerifyCompletionsInJsDoc) { goTo.marker(marker); verifyValueOrType("Foo", "class");