Skip to content

Commit ebf1a79

Browse files
committed
Fix spelling
1 parent 2afcc44 commit ebf1a79

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Microsoft.TestPlatform.CrossPlatEngine/MultiTestRunFinalization/MultiTestRunFinalizationManager.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,10 @@ private async Task<Collection<AttachmentSet>> ProcessAttachmentsAsync(Collection
107107
var dataCollectorAttachmentsProcessor = dataCollectorAttachmentsProcessors[i];
108108
int attachmentsHandlerIndex = i + 1;
109109

110-
ICollection<Uri> attachementProcessorUris = dataCollectorAttachmentsProcessor.GetExtensionUris()?.ToList();
111-
if (attachementProcessorUris != null && attachementProcessorUris.Any())
110+
ICollection<Uri> attachmentProcessorUris = dataCollectorAttachmentsProcessor.GetExtensionUris()?.ToList();
111+
if (attachmentProcessorUris != null && attachmentProcessorUris.Any())
112112
{
113-
var attachmentsToBeProcessed = attachments.Where(dataCollectionAttachment => attachementProcessorUris.Any(uri => uri.Equals(dataCollectionAttachment.Uri))).ToArray();
113+
var attachmentsToBeProcessed = attachments.Where(dataCollectionAttachment => attachmentProcessorUris.Any(uri => uri.Equals(dataCollectionAttachment.Uri))).ToArray();
114114
if (attachmentsToBeProcessed.Any())
115115
{
116116
foreach (var attachment in attachmentsToBeProcessed)
@@ -120,7 +120,7 @@ private async Task<Collection<AttachmentSet>> ProcessAttachmentsAsync(Collection
120120

121121
IProgress<int> progressReporter = new Progress<int>((int progress) =>
122122
eventsHandler?.HandleMultiTestRunFinalizationProgress(
123-
new MultiTestRunFinalizationProgressEventArgs(attachmentsHandlerIndex, attachementProcessorUris, progress, dataCollectorAttachmentsProcessors.Length)));
123+
new MultiTestRunFinalizationProgressEventArgs(attachmentsHandlerIndex, attachmentProcessorUris, progress, dataCollectorAttachmentsProcessors.Length)));
124124

125125
ICollection<AttachmentSet> processedAttachments = await dataCollectorAttachmentsProcessor.ProcessAttachmentSetsAsync(new Collection<AttachmentSet>(attachmentsToBeProcessed), progressReporter, logger, cancellationToken).ConfigureAwait(false);
126126

0 commit comments

Comments
 (0)