Skip to content

Commit

Permalink
fix: correct spelling of 'compliance' in alert notification check (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
kooomix authored Nov 26, 2024
1 parent 48ed27f commit 29f1b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests_scripts/users_notifications/alert_notifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def assert_misconfiguration_message_sent(messages, cluster):
found = 0
for message in messages:
message_string = str(message)
if "Your complaince score has decreased" in message_string and cluster in message_string:
if "Your compliance score has decreased" in message_string and cluster in message_string:
found += 1
assert found == 1, f"expected to have exactly one new misconfiguration message, found {found}"

Expand Down

0 comments on commit 29f1b43

Please sign in to comment.