From 46fce38798c0a1d5ec2c045c44c67c1695b31a1b Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 14 Jul 2024 17:31:44 -0700 Subject: [PATCH] Update Test-MtCisaGlobalAdminRatio.ps1 Line breaks are hard. --- powershell/public/cisa/entra/Test-MtCisaGlobalAdminRatio.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/powershell/public/cisa/entra/Test-MtCisaGlobalAdminRatio.ps1 b/powershell/public/cisa/entra/Test-MtCisaGlobalAdminRatio.ps1 index 621e0fd4..6a40569a 100644 --- a/powershell/public/cisa/entra/Test-MtCisaGlobalAdminRatio.ps1 +++ b/powershell/public/cisa/entra/Test-MtCisaGlobalAdminRatio.ps1 @@ -56,11 +56,11 @@ Function Test-MtCisaGlobalAdminRatio { } else { $testResultMarkdown = "Your tenant does not have enough granular [role assignments]($link).`n`n%TestResult%" } - $result = "Current Ratio: $([System.Math]::Round($ratio,2)) = $($globalAdministrators.Count) / $($otherAssignments.Count)`n" + $result = "Current Ratio: $([System.Math]::Round($ratio,2)) = $($globalAdministrators.Count) / $($otherAssignments.Count)`n`n" $result += "Ratio >= 1 - $($ratio -ge 1)" $testResultMarkdown = $testResultMarkdown -replace "%TestResult%", $result Add-MtTestResultDetail -Result $testResultMarkdown return $testResult -} \ No newline at end of file +}