@@ -53,7 +53,7 @@ namespace ts.projectSystem {
5353
5454 // TODO: Apparently compilerOptions is mutated, so have to repeat it here!
5555 et . assertProjectInfoTelemetryEvent ( {
56- projectId : Harness . LanguageService . mockHash ( "/hunter2/foo.csproj" ) ,
56+ projectId : Harness . mockHash ( "/hunter2/foo.csproj" ) ,
5757 compilerOptions : { strict : true } ,
5858 compileOnSave : true ,
5959 // These properties can't be present for an external project, so they are undefined instead of false.
@@ -195,7 +195,7 @@ namespace ts.projectSystem {
195195 const et = new EventTracker ( [ jsconfig , file ] ) ;
196196 et . service . openClientFile ( file . path ) ;
197197 et . assertProjectInfoTelemetryEvent ( {
198- projectId : Harness . LanguageService . mockHash ( "/jsconfig.json" ) ,
198+ projectId : Harness . mockHash ( "/jsconfig.json" ) ,
199199 fileStats : fileStats ( { js : 1 } ) ,
200200 compilerOptions : autoJsCompilerOptions ,
201201 typeAcquisition : {
@@ -215,7 +215,7 @@ namespace ts.projectSystem {
215215 et . service . openClientFile ( file . path ) ;
216216 et . getEvent < server . ProjectLanguageServiceStateEvent > ( server . ProjectLanguageServiceStateEvent , /*mayBeMore*/ true ) ;
217217 et . assertProjectInfoTelemetryEvent ( {
218- projectId : Harness . LanguageService . mockHash ( "/jsconfig.json" ) ,
218+ projectId : Harness . mockHash ( "/jsconfig.json" ) ,
219219 fileStats : fileStats ( { js : 1 } ) ,
220220 compilerOptions : autoJsCompilerOptions ,
221221 configFileName : "jsconfig.json" ,
@@ -251,7 +251,7 @@ namespace ts.projectSystem {
251251
252252 assertProjectInfoTelemetryEvent ( partial : Partial < server . ProjectInfoTelemetryEventData > ) : void {
253253 assert . deepEqual ( this . getEvent < server . ProjectInfoTelemetryEvent > ( ts . server . ProjectInfoTelemetryEvent ) , {
254- projectId : Harness . LanguageService . mockHash ( "/tsconfig.json" ) ,
254+ projectId : Harness . mockHash ( "/tsconfig.json" ) ,
255255 fileStats : fileStats ( { ts : 1 } ) ,
256256 compilerOptions : { } ,
257257 extends : false ,
0 commit comments