Skip to content

Commit

Permalink
FCL-391 | rename assert_other_violations to check_other_violations
Browse files Browse the repository at this point in the history
  • Loading branch information
jlhdxw committed Oct 29, 2024
1 parent 5708e3c commit cf5bfe2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e_tests/utils/assertions.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def assert_critical_violations(violations, page_url):
)


def assert_other_violations(violations, page_url):
def check_other_violations(violations, page_url):
other_violations = []

for violation in violations:
Expand All @@ -48,7 +48,7 @@ def assert_is_accessible(page):
return

assert_critical_violations(violations, page.url)
assert_other_violations(violations, page.url)
check_other_violations(violations, page.url)


def format_violation(violation):
Expand Down

0 comments on commit cf5bfe2

Please sign in to comment.