Skip to content

Commit eb188d0

Browse files
committed
fix #11676 - lint test
1 parent e32c620 commit eb188d0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/cases/fourslash/formattingNonNullAssertionOperator.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
/////*5*/var foo = bar!;
88

99
format.document();
10-
goTo.marker('1');
10+
goTo.marker("1");
1111
verify.currentLineContentIs("'bar'!;");
12-
goTo.marker('2');
12+
goTo.marker("2");
1313
verify.currentLineContentIs("('bar')!;");
14-
goTo.marker('3');
14+
goTo.marker("3");
1515
verify.currentLineContentIs("'bar'[1]!;");
16-
goTo.marker('4');
16+
goTo.marker("4");
1717
verify.currentLineContentIs("var bar = 'bar'.foo!;");
18-
goTo.marker('5');
18+
goTo.marker("5");
1919
verify.currentLineContentIs("var foo = bar!;");

0 commit comments

Comments
 (0)