File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3232,14 +3232,14 @@ namespace ts.projectSystem {
3232
3232
CommandNames . SemanticDiagnosticsSync ,
3233
3233
{ file : dTsFile1 . path }
3234
3234
) ;
3235
- let error1Result = < protocol . Diagnostic [ ] > session . executeCommand ( dTsFile1GetErrRequest ) . response ;
3235
+ const error1Result = < protocol . Diagnostic [ ] > session . executeCommand ( dTsFile1GetErrRequest ) . response ;
3236
3236
assert . isTrue ( error1Result . length === 0 ) ;
3237
3237
3238
3238
const dTsFile2GetErrRequest = makeSessionRequest < protocol . SemanticDiagnosticsSyncRequestArgs > (
3239
3239
CommandNames . SemanticDiagnosticsSync ,
3240
3240
{ file : dTsFile2 . path }
3241
3241
) ;
3242
- let error2Result = < protocol . Diagnostic [ ] > session . executeCommand ( dTsFile2GetErrRequest ) . response ;
3242
+ const error2Result = < protocol . Diagnostic [ ] > session . executeCommand ( dTsFile2GetErrRequest ) . response ;
3243
3243
assert . isTrue ( error2Result . length === 0 ) ;
3244
3244
} ) ;
3245
3245
You can’t perform that action at this time.
0 commit comments