Skip to content

Commit 35024b4

Browse files
committed
Fix lint errors
1 parent 8c33a79 commit 35024b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/harness/unittests/tsserverProjectSystem.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3232,14 +3232,14 @@ namespace ts.projectSystem {
32323232
CommandNames.SemanticDiagnosticsSync,
32333233
{ file: dTsFile1.path }
32343234
);
3235-
let error1Result = <protocol.Diagnostic[]>session.executeCommand(dTsFile1GetErrRequest).response;
3235+
const error1Result = <protocol.Diagnostic[]>session.executeCommand(dTsFile1GetErrRequest).response;
32363236
assert.isTrue(error1Result.length === 0);
32373237

32383238
const dTsFile2GetErrRequest = makeSessionRequest<protocol.SemanticDiagnosticsSyncRequestArgs>(
32393239
CommandNames.SemanticDiagnosticsSync,
32403240
{ file: dTsFile2.path }
32413241
);
3242-
let error2Result = <protocol.Diagnostic[]>session.executeCommand(dTsFile2GetErrRequest).response;
3242+
const error2Result = <protocol.Diagnostic[]>session.executeCommand(dTsFile2GetErrRequest).response;
32433243
assert.isTrue(error2Result.length === 0);
32443244
});
32453245

0 commit comments

Comments
 (0)