File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments