Skip to content

Commit

Permalink
Merge branch 'main' into CalLogs-Use_Prod_Code
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaulson45 authored Nov 6, 2024
2 parents f673644 + 76895e2 commit 83ebb40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Describe "Testing Health Checker by Mock Data Imports" {
TestObjectMatch "AES256-CBC Protected Content Support" "Not Supported Build" -WriteType "Red"
TestObjectMatch "SerializedDataSigning Enabled" "Unsupported Version" -WriteType "Red"

$Script:ActiveGrouping.Count | Should -Be 84
$Script:ActiveGrouping.Count | Should -Be 85
}

It "Display Results - Security Vulnerability" {
Expand Down
2 changes: 1 addition & 1 deletion M365/MDO/ResendFailedMail.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ if ($failedMessages.count -ge 1000) {
}

if (-not $IncludeDuplicates) {
[array]$failedMessages = $failedMessages | Sort-Object MessageId -Unique
[array]$failedMessages = $failedMessages | Group-Object -Property MessageId | ForEach-Object { $_.Group | Sort-Object -Property Received | Select-Object -First 1 }
}

$verifiedAcceptedSenderMessages = New-Object System.Collections.Generic.List[object]
Expand Down

0 comments on commit 83ebb40

Please sign in to comment.