Skip to content

Commit 5f20df3

Browse files
committed
Fixing build.
1 parent 876bb30 commit 5f20df3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/EditorFeatures/Test/Diagnostics/DiagnosticAnalyzerServiceTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ internal async Task TestAnalysisWithAnalyzerInBothProjectAndHost_SameAnalyzerIns
730730
var diagnosticsMapResults = await DiagnosticComputer.GetDiagnosticsAsync(
731731
document, project, Checksum.Null, span: null, projectAnalyzerIds: [analyzerId], [analyzerId],
732732
AnalysisKind.Semantic, new DiagnosticAnalyzerInfoCache(), workspace.Services,
733-
logPerformanceInfo: false, getTelemetryInfo: false,
733+
isExplicit: false, logPerformanceInfo: false, getTelemetryInfo: false,
734734
cancellationToken: CancellationToken.None);
735735

736736
// In this case, since the analyzer identity is identical, we ran it once
@@ -766,7 +766,7 @@ internal async Task TestAnalysisWithAnalyzerInBothProjectAndHost_DifferentAnalyz
766766
var diagnosticsMapResults = await DiagnosticComputer.GetDiagnosticsAsync(
767767
document, project, Checksum.Null, span: null, projectAnalyzerIds: [analyzerProjectId], [analyzerHostId],
768768
AnalysisKind.Semantic, new DiagnosticAnalyzerInfoCache(), workspace.Services,
769-
logPerformanceInfo: false, getTelemetryInfo: false,
769+
isExplicit: false, logPerformanceInfo: false, getTelemetryInfo: false,
770770
cancellationToken: CancellationToken.None);
771771

772772
// In this case, since the analyzer reference identity is identical, we ran it once
@@ -801,7 +801,7 @@ internal async Task TestAnalysisWithAnalyzerInBothProjectAndHost_DifferentAnalyz
801801
var diagnosticsMapResults = await DiagnosticComputer.GetDiagnosticsAsync(
802802
document, project, Checksum.Null, span: null, projectAnalyzerIds: [analyzerProjectId], [analyzerHostId],
803803
AnalysisKind.Semantic, new DiagnosticAnalyzerInfoCache(), workspace.Services,
804-
logPerformanceInfo: false, getTelemetryInfo: false,
804+
isExplicit: false, logPerformanceInfo: false, getTelemetryInfo: false,
805805
cancellationToken: CancellationToken.None);
806806

807807
// In this case, the analyzers are ran twice. This appears to be a bug in SkippedHostAnalyzersInfo.Create, because it calls
@@ -855,7 +855,7 @@ internal async Task TestAnalysisWithAnalyzerInBothProjectAndHost_SameAnalyzerIns
855855
var diagnosticsMapResults = await DiagnosticComputer.GetDiagnosticsAsync(
856856
document, project, Checksum.Null, span: null, projectAnalyzerIds: [analyzerId], [analyzerId],
857857
AnalysisKind.Semantic, new DiagnosticAnalyzerInfoCache(), workspace.Services,
858-
logPerformanceInfo: false, getTelemetryInfo: false,
858+
isExplicit: false, logPerformanceInfo: false, getTelemetryInfo: false,
859859
cancellationToken: CancellationToken.None);
860860

861861
Assert.Equal(1, diagnosticsMapResults.Diagnostics.Length);

0 commit comments

Comments
 (0)