diff --git a/tests/cases/fourslash/codeFixClassImplementInterfaceMemberTypeAlias.ts b/tests/cases/fourslash/codeFixClassImplementInterfaceMemberTypeAlias.ts index 6fd8900d51..8893d35b54 100644 --- a/tests/cases/fourslash/codeFixClassImplementInterfaceMemberTypeAlias.ts +++ b/tests/cases/fourslash/codeFixClassImplementInterfaceMemberTypeAlias.ts @@ -10,8 +10,8 @@ verify.codeFix({ `type MyType = [string, number]; interface I { x: MyType; test(a: MyType): void; } class C implements I { - x: [string, number]; - test(a: [string, number]): void { + x: MyType; + test(a: MyType): void { throw new Error("Method not implemented."); } }`,