Skip to content

Commit b18c70f

Browse files
committed
Fix fourslash test
1 parent bf0debb commit b18c70f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/cases/fourslash/codeFixClassImplementInterfaceMemberTypeAlias.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ verify.codeFix({
1010
`type MyType = [string, number];
1111
interface I { x: MyType; test(a: MyType): void; }
1212
class C implements I {
13-
x: [string, number];
14-
test(a: [string, number]): void {
13+
x: MyType;
14+
test(a: MyType): void {
1515
throw new Error("Method not implemented.");
1616
}
1717
}`,

0 commit comments

Comments
 (0)