Skip to content

Commit

Permalink
fix(findings): Spelling mistakes correction (#6834)
Browse files Browse the repository at this point in the history
Co-authored-by: Gary Mclean <gary.mclean@krrv.io>
  • Loading branch information
prowler-bot and garym-krrv authored Feb 5, 2025
1 parent 395ecaf commit 4c2ec09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def execute(self) -> Check_Report_Azure:
)
report.subscription = f"Tenant: {tenant}"
report.status = "FAIL"
report.status_extended = "Entra security defaults is diabled."
report.status_extended = "Entra security defaults is disabled."

if getattr(security_default, "is_enabled", False):
report.status = "PASS"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def test_entra_tenant_empty(self):
result = check.execute()
assert len(result) == 1
assert result[0].status == "FAIL"
assert result[0].status_extended == "Entra security defaults is diabled."
assert result[0].status_extended == "Entra security defaults is disabled."
assert result[0].subscription == f"Tenant: {DOMAIN}"
assert result[0].resource_name == ""
assert result[0].resource_id == ""
Expand Down Expand Up @@ -109,7 +109,7 @@ def test_entra_security_default_disabled(self):
result = check.execute()
assert len(result) == 1
assert result[0].status == "FAIL"
assert result[0].status_extended == "Entra security defaults is diabled."
assert result[0].status_extended == "Entra security defaults is disabled."
assert result[0].subscription == f"Tenant: {DOMAIN}"
assert result[0].resource_name == "Sec Default"
assert result[0].resource_id == id

0 comments on commit 4c2ec09

Please sign in to comment.