Skip to content

Commit dbfe80b

Browse files
committed
Fix fourslash test
1 parent adc8608 commit dbfe80b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/cases/fourslash/quickInfoOnNarrowedType.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ verify.quickInfoIs('(parameter) strOrNum: string');
3131
verify.completionListContains("strOrNum", "(parameter) strOrNum: string");
3232

3333
goTo.marker('4');
34-
verify.quickInfoIs('let s: undefined');
35-
verify.completionListContains("s", "let s: undefined");
34+
verify.quickInfoIs('let s: string | undefined');
35+
verify.completionListContains("s", "let s: string | undefined");
3636

3737
goTo.marker('5');
3838
verify.quickInfoIs('let s: string | undefined');

0 commit comments

Comments
 (0)