From 5a5b0649e03667c28f64926d23193e3866a371c9 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 7 Oct 2024 08:23:18 -0700 Subject: [PATCH] restore axe_core level to minor --- tests/end_to_end/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/end_to_end/conftest.py b/tests/end_to_end/conftest.py index b6ea3e509..8b8d8e23c 100644 --- a/tests/end_to_end/conftest.py +++ b/tests/end_to_end/conftest.py @@ -33,5 +33,5 @@ def check_axe_report(page): # so we can set the level we skip to minor only for violation in results["violations"]: assert violation["impact"] in [ - "minor", "moderate" + "minor" ], f"Accessibility violation: {violation}"