fix(outputs): Table and Azure metadata (#1520)

This commit is contained in:
Nacho Rivera
2022-11-28 11:16:13 +01:00
committed by GitHub
parent d1f5d58eeb
commit 9a5e433489
22 changed files with 23 additions and 27 deletions

View File

@@ -483,7 +483,7 @@ def add_service_to_table(findings_table, current):
)
current["Status"] = f"{Fore.RED}FAIL ({total_fails}){Style.RESET_ALL}"
else:
current["Status"] = f"{Fore.GREEN}PASS ({current['Total']}){Style.RESET_ALL}"
current["Status"] = f"{Fore.GREEN}PASS {Style.RESET_ALL}"
findings_table["Provider"].append(current["Provider"])
findings_table["Service"].append(current["Service"])
findings_table["Status"].append(current["Status"])