diff --git a/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts b/tests/cases/fourslash/jsFileJsdocTypedefTagTypeExpressionCompletion.ts index 62046458e4..d6c3ca4f91 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 b327fdf427..038c5db552 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");