Skip to content

Commit

Permalink
Fix fourslash tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ahejlsberg committed Oct 17, 2022
1 parent c1a176c commit 9b1dbea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/cases/fourslash/codeFixAddMissingEnumMember10.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ verify.codeFix({
}
enum A {
a = E.c,
b
b = "b"
}
A.b`
});
2 changes: 1 addition & 1 deletion tests/cases/fourslash/codeFixAddMissingEnumMember11.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ enum A {
}
enum B {
b = A.a,
c
c = "c"
}
B.c`
});

0 comments on commit 9b1dbea

Please sign in to comment.