Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoRossignoli committed Nov 23, 2021
1 parent 8715336 commit 3b8b3fb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected DataCollectionManager(IDataCollectionAttachmentManager datacollectionA
this.messageSink = messageSink;
this.events = new TestPlatformDataCollectionEvents();
this.dataCollectorExtensionManager = null;
this.RunDataCollectors = new Dictionary<Type, DataCollectorInformation>();
this.RunDataCollectors = new Dictionary<Type, DataCollectorInformation>();
this.dataCollectionTelemetryManager = dataCollectionTelemetryManager;
}

Expand Down Expand Up @@ -265,8 +265,7 @@ public Collection<InvokedDataCollector> GetInvokedDataCollectors()
List<InvokedDataCollector> invokedDataCollector = new List<InvokedDataCollector>();
foreach (DataCollectorInformation dataCollectorInformation in this.RunDataCollectors.Values)
{
invokedDataCollector.Add(new InvokedDataCollector(
dataCollectorInformation.DataCollectorConfig.TypeUri,
invokedDataCollector.Add(new InvokedDataCollector(dataCollectorInformation.DataCollectorConfig.TypeUri,
dataCollectorInformation.DataCollectorConfig.DataCollectorType.AssemblyQualifiedName,
dataCollectorInformation.DataCollectorConfig.FilePath,
dataCollectorInformation.DataCollectorConfig.HasAttachmentsProcessor()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ static Microsoft.VisualStudio.TestPlatform.ObjectModel.ValidateArgProperty.TypeO
static Microsoft.VisualStudio.TestPlatform.Utilities.MulticastDelegateUtilities.SafeInvoke(this System.Delegate delegates, object sender, System.EventArgs args, string traceDisplayName) -> void
static Microsoft.VisualStudio.TestPlatform.Utilities.TimeSpanParser.Parse(string time) -> System.TimeSpan
static Microsoft.VisualStudio.TestPlatform.Utilities.TimeSpanParser.TryParse(string time, out System.TimeSpan result) -> bool
virtual Microsoft.VisualStudio.TestPlatform.Utilities.JobQueue<T>.WaitForQueueToGetEmpty() -> bool
virtual Microsoft.VisualStudio.TestPlatform.Utilities.JobQueue<T>.WaitForQueueToGetEmpty() -> bool
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public override bool Equals(object obj)
=> this.Equals(obj as InvokedDataCollector);

/// <summary>
/// Returns object hashcode
/// Returns the object hashcode
/// </summary>
/// <returns>Hashcode value</returns>
public override int GetHashCode()
Expand Down

0 comments on commit 3b8b3fb

Please sign in to comment.